<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Remove ticks in Graph question in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Remove-ticks-in-Graph-question/m-p/553402#M9368</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Wish someone can help me for my graph. I am trying to remove the highlighted part 24H in below graph on day 1 day 7 and day 8, but keep the 24H in day 21 section.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28946iF2A7708FEF265281/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Following is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc format;&lt;BR /&gt;value trt 0='300mg(day1), 300mg(day7), 600mg(day8), 600mg(day21)'&lt;BR /&gt;1='Placebo (day1 to day 21)';&lt;BR /&gt;value nday 1='Day 1' 7='Day 7' 8='Day 8' 21='Day 21';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc template;&lt;BR /&gt;define statgraph datapanel;&lt;BR /&gt;begingraph / designwidth=9in designheight=5.9in attrpriority=none&lt;BR /&gt;dataColors=(red black) dataContrastColors=(red black)&lt;BR /&gt;dataSymbols=(squarefilled circlefilled) dataLinePatterns=(solid solid);&lt;BR /&gt;layout DATAPANEL classvars=(NDAY)&lt;BR /&gt;/ rows=1 columns=4 headerlabeldisplay=value rowdatarange=union row2datarange=union&lt;BR /&gt;columnaxisopts=(linearopts=(tickvaluelist=(0 1 2 8 12 24)) linearopts=(TICKVALUEFITPOLICY=none))&lt;BR /&gt;rowaxisopts=(LabelPosition=DataCenter&lt;BR /&gt;linearopts=(viewmin=-8 viewmax=12 tickvaluelist=(-8 -6 -4 -2 0 2 4 6 8 10 12)));&lt;BR /&gt;layout PROTOTYPE;&lt;BR /&gt;scatterplot x=TIME y=MEANCHG / yerrorupper=ulm yerrorlower=llm group=PLBO groupdisplay=cluster;&lt;BR /&gt;seriesplot x=TIME y=MEANCHG / group=PLBO groupdisplay=cluster display=(markers) name='s'&lt;BR /&gt;markerattrs=(size=2pct);&lt;BR /&gt;endlayout;&lt;/P&gt;&lt;P&gt;sidebar / spacefill=false;&lt;BR /&gt;discretelegend 's' / title='' across=1;&lt;BR /&gt;endsidebar;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;*----------------------------------------------------------------------------*;&lt;BR /&gt;* output plot into png/rtf file. *;&lt;BR /&gt;*----------------------------------------------------------------------------*;&lt;BR /&gt;options orientation=landscape nodate nonumber leftmargin=1in rightmargin=1in topmargin=1in bottommargin=1in;&lt;BR /&gt;ods _all_ close;&lt;BR /&gt;ods rtf file="&amp;amp;outdir.\hr0time0plot.rtf" bodytitle nogtitle nogfootnote;&lt;BR /&gt;ods listing style=RTF gpath="&amp;amp;outdir";&lt;BR /&gt;ods graphics / reset noborder imagename="hr0time0plot" outputfmt=png;&lt;BR /&gt;title;&lt;BR /&gt;proc sgrender data=anal1 template=datapanel;&lt;BR /&gt;format PLBO trt. NDAY nday.;&lt;BR /&gt;run;&lt;BR /&gt;ods graphics off;&lt;BR /&gt;ods listing close;&lt;BR /&gt;ods rtf close;&lt;/P&gt;&lt;P&gt;*** need to have output destinations active;&lt;BR /&gt;ods listing;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Apr 2019 03:00:06 GMT</pubDate>
    <dc:creator>Jay323</dc:creator>
    <dc:date>2019-04-24T03:00:06Z</dc:date>
    <item>
      <title>Remove ticks in Graph question</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-ticks-in-Graph-question/m-p/553402#M9368</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Wish someone can help me for my graph. I am trying to remove the highlighted part 24H in below graph on day 1 day 7 and day 8, but keep the 24H in day 21 section.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28946iF2A7708FEF265281/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Following is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc format;&lt;BR /&gt;value trt 0='300mg(day1), 300mg(day7), 600mg(day8), 600mg(day21)'&lt;BR /&gt;1='Placebo (day1 to day 21)';&lt;BR /&gt;value nday 1='Day 1' 7='Day 7' 8='Day 8' 21='Day 21';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc template;&lt;BR /&gt;define statgraph datapanel;&lt;BR /&gt;begingraph / designwidth=9in designheight=5.9in attrpriority=none&lt;BR /&gt;dataColors=(red black) dataContrastColors=(red black)&lt;BR /&gt;dataSymbols=(squarefilled circlefilled) dataLinePatterns=(solid solid);&lt;BR /&gt;layout DATAPANEL classvars=(NDAY)&lt;BR /&gt;/ rows=1 columns=4 headerlabeldisplay=value rowdatarange=union row2datarange=union&lt;BR /&gt;columnaxisopts=(linearopts=(tickvaluelist=(0 1 2 8 12 24)) linearopts=(TICKVALUEFITPOLICY=none))&lt;BR /&gt;rowaxisopts=(LabelPosition=DataCenter&lt;BR /&gt;linearopts=(viewmin=-8 viewmax=12 tickvaluelist=(-8 -6 -4 -2 0 2 4 6 8 10 12)));&lt;BR /&gt;layout PROTOTYPE;&lt;BR /&gt;scatterplot x=TIME y=MEANCHG / yerrorupper=ulm yerrorlower=llm group=PLBO groupdisplay=cluster;&lt;BR /&gt;seriesplot x=TIME y=MEANCHG / group=PLBO groupdisplay=cluster display=(markers) name='s'&lt;BR /&gt;markerattrs=(size=2pct);&lt;BR /&gt;endlayout;&lt;/P&gt;&lt;P&gt;sidebar / spacefill=false;&lt;BR /&gt;discretelegend 's' / title='' across=1;&lt;BR /&gt;endsidebar;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;*----------------------------------------------------------------------------*;&lt;BR /&gt;* output plot into png/rtf file. *;&lt;BR /&gt;*----------------------------------------------------------------------------*;&lt;BR /&gt;options orientation=landscape nodate nonumber leftmargin=1in rightmargin=1in topmargin=1in bottommargin=1in;&lt;BR /&gt;ods _all_ close;&lt;BR /&gt;ods rtf file="&amp;amp;outdir.\hr0time0plot.rtf" bodytitle nogtitle nogfootnote;&lt;BR /&gt;ods listing style=RTF gpath="&amp;amp;outdir";&lt;BR /&gt;ods graphics / reset noborder imagename="hr0time0plot" outputfmt=png;&lt;BR /&gt;title;&lt;BR /&gt;proc sgrender data=anal1 template=datapanel;&lt;BR /&gt;format PLBO trt. NDAY nday.;&lt;BR /&gt;run;&lt;BR /&gt;ods graphics off;&lt;BR /&gt;ods listing close;&lt;BR /&gt;ods rtf close;&lt;/P&gt;&lt;P&gt;*** need to have output destinations active;&lt;BR /&gt;ods listing;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 03:00:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-ticks-in-Graph-question/m-p/553402#M9368</guid>
      <dc:creator>Jay323</dc:creator>
      <dc:date>2019-04-24T03:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ticks in Graph question</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-ticks-in-Graph-question/m-p/553445#M9383</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271664"&gt;@Jay323&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;Wish someone can help me for my graph. I am trying to remove the highlighted part 24H in below graph on day 1 day 7 and day 8, but keep the day 2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc template;&lt;BR /&gt;define statgraph datapanel;&lt;BR /&gt;begingraph / designwidth=9in designheight=5.9in attrpriority=none&lt;BR /&gt;dataColors=(red black) dataContrastColors=(red black)&lt;BR /&gt;dataSymbols=(squarefilled circlefilled) dataLinePatterns=(solid solid);&lt;BR /&gt;layout DATAPANEL classvars=(NDAY)&lt;BR /&gt;/ rows=1 columns=4 headerlabeldisplay=value rowdatarange=union row2datarange=union&lt;BR /&gt;columnaxisopts=(linearopts=(tickvaluelist=(0 1 2 8 12&lt;FONT size="6"&gt;&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt; 24&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;)) linearopts=(TICKVALUEFITPOLICY=none))&lt;BR /&gt;rowaxisopts=(LabelPosition=DataCenter&lt;BR /&gt;linearopts=(viewmin=-8 viewmax=12 tickvaluelist=(-8 -6 -4 -2 0 2 4 6 8 10 12)));&lt;BR /&gt;layout PROTOTYPE;&lt;BR /&gt;scatterplot x=TIME y=MEANCHG / yerrorupper=ulm yerrorlower=llm group=PLBO groupdisplay=cluster;&lt;BR /&gt;seriesplot x=TIME y=MEANCHG / group=PLBO groupdisplay=cluster display=(markers) name='s'&lt;BR /&gt;markerattrs=(size=2pct);&lt;BR /&gt;endlayout;&lt;/P&gt;
&lt;P&gt;sidebar / spacefill=false;&lt;BR /&gt;discretelegend 's' / title='' across=1;&lt;BR /&gt;endsidebar;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please look at your tickvaluelist for the columnaxisopts. if you don't want the 24 there then don't put it in the option list.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 21:53:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-ticks-in-Graph-question/m-p/553445#M9383</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-23T21:53:47Z</dc:date>
    </item>
  </channel>
</rss>

