<?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 Re: Minor Tickmarks on X-Axis in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43660#M1425</link>
    <description>Thank you very much for your answer. I will try it the next days &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
    <pubDate>Wed, 07 Jul 2010 08:08:00 GMT</pubDate>
    <dc:creator>marieK</dc:creator>
    <dc:date>2010-07-07T08:08:00Z</dc:date>
    <item>
      <title>Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43658#M1423</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
i created a nice Errorplot-Graphic with the Graph Template Language. I just have a problem with my X-Axis. My Axis should be labled with -60 0 60 120 180 240 300 360 Minutes but i also want to have minor tickmarks every 20 minutes (not labeled). &lt;BR /&gt;
&lt;BR /&gt;
Can you tell me if that is possible and how i could do that?&lt;BR /&gt;
&lt;BR /&gt;
Is it also possible to set a by-Variable so that i get errorplots for each period?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
This is my code i use SAS 9.2 Phase 1:&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
define statgraph fehlerplot;&lt;BR /&gt;
	begingraph;&lt;BR /&gt;
		layout overlay / xaxisopts=( Label="Time [min]" type=linear &lt;BR /&gt;
linearopts=(tickvaluelist=(-60 0 60 120 180 240 300 360) viewmin=-60 viewmax=360) ) &lt;BR /&gt;
						yaxisopts=( Label="TNSS" type=linear linearopts=( tickvaluelist=( 0 1 2 3 4 5 6 7 8 9 10 11 12 ) viewmin=0 viewmax=12 ) );;&lt;BR /&gt;
			scatterplot x=time_value y=MeanTNSS /&lt;BR /&gt;
			yerrorlower=eval(MeanTNSS - STD)&lt;BR /&gt;
			yerrorupper=eval(MeanTNSS + STD);&lt;BR /&gt;
			seriesplot x=time_value y=MeanTNSS;&lt;BR /&gt;
		endlayout;&lt;BR /&gt;
	endgraph;&lt;BR /&gt;
end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
thank you in advance!&lt;BR /&gt;
&lt;BR /&gt;
Marie&lt;BR /&gt;
&lt;BR /&gt;
Message was edited by: marieK

Message was edited by: marieK</description>
      <pubDate>Fri, 02 Jul 2010 08:10:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43658#M1423</guid>
      <dc:creator>marieK</dc:creator>
      <dc:date>2010-07-02T08:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43659#M1424</link>
      <description>GTL does not support minor tick marks for Linear Axis.  Minor tick marks are only supported for Time Axis, where the spacing is determined by the value of the INTERVAL option.&lt;BR /&gt;
&lt;BR /&gt;
If you want ticks every 20 minutes, and know exactly where you want them and you can live with "inside" ticks (rather than the traditional outside ticks), there may be a workaround.  A FRINGE plot with a column that has the values where you want the tick will give you small tick-like marks at the bottom of the graph (on the inside).  You could create a column like that and add a FRINGEPLOT to your graph.  Note, this only works for X or X2 axis, not Y axis.  Fringe height can be adjusted.</description>
      <pubDate>Fri, 02 Jul 2010 12:54:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43659#M1424</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2010-07-02T12:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43660#M1425</link>
      <description>Thank you very much for your answer. I will try it the next days &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Wed, 07 Jul 2010 08:08:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43660#M1425</guid>
      <dc:creator>marieK</dc:creator>
      <dc:date>2010-07-07T08:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43661#M1426</link>
      <description>mmhh i think the FRINGE plot is not a good solution for me.&lt;BR /&gt;
&lt;BR /&gt;
Do you maybe have an idea how i can do an errorplot (mean, mean+std, mean-std) in Gplot? &lt;BR /&gt;
&lt;BR /&gt;
I tried it with:&lt;BR /&gt;
&lt;BR /&gt;
proc sql;&lt;BR /&gt;
create table try as&lt;BR /&gt;
	select time_value,mean(score) as mean format=6.2,&lt;BR /&gt;
	mean(score)-std(score) as std&lt;BR /&gt;
	from test&lt;BR /&gt;
	group by time&lt;BR /&gt;
	union&lt;BR /&gt;
	select time_value,mean(score) as mean format=6.2,&lt;BR /&gt;
	mean(score)+std(score) as std&lt;BR /&gt;
	from test&lt;BR /&gt;
	group by time;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
	symbol2 color=black&lt;BR /&gt;
	interpol=stdtj&lt;BR /&gt;
	cv=black&lt;BR /&gt;
	ci=black&lt;BR /&gt;
	line=1&lt;BR /&gt;
	value=dot;&lt;BR /&gt;
&lt;BR /&gt;
	axis1 label=('Time [min]')order=(-60 TO 360 BY 60);&lt;BR /&gt;
&lt;BR /&gt;
	axis2 label=(angle=90 'score') order=(0 to 12 by 1) value=(color=black);&lt;BR /&gt;
&lt;BR /&gt;
proc gplot data=try;&lt;BR /&gt;
where std NE . and time NE . ;&lt;BR /&gt;
 format mean std 3.0;&lt;BR /&gt;
 plot (std mean)*time/ overlay&lt;BR /&gt;
							 haxis=axis1&lt;BR /&gt;
							 vaxis=axis2;&lt;BR /&gt;
&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
but it doesnt work properly... Any other idea?&lt;BR /&gt;
&lt;BR /&gt;
Thanks! Marie</description>
      <pubDate>Wed, 07 Jul 2010 11:22:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43661#M1426</guid>
      <dc:creator>marieK</dc:creator>
      <dc:date>2010-07-07T11:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43662#M1427</link>
      <description>Can you elaborate some on "doesn't work properly"?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
For gplot, I think you would want to have 3 response variables, instead of just two.&lt;BR /&gt;
&lt;BR /&gt;
In pseudo-code/concept, something like ...&lt;BR /&gt;
&lt;BR /&gt;
select time_value,mean(score) as mean format=6.2,&lt;BR /&gt;
mean(score)-std(score) as std_lower, mean(score)+std(score) as std_upper&lt;BR /&gt;
&lt;BR /&gt;
and then ...&lt;BR /&gt;
&lt;BR /&gt;
symbol1 /* stuff for the =1 line */&lt;BR /&gt;
symbol2 /* stuff for the =2 */&lt;BR /&gt;
symbol3 /* stuff for the =3 */&lt;BR /&gt;
plot std_upper*time=1 mean*time=2 std_lower*time=3 / overlay</description>
      <pubDate>Wed, 07 Jul 2010 12:00:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43662#M1427</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2010-07-07T12:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43663#M1428</link>
      <description>Here's an example that has a gplot similar to what (I think) you're wanting...&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://robslink.com/SAS/democd5/revenue.htm" target="_blank"&gt;http://robslink.com/SAS/democd5/revenue.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://robslink.com/SAS/democd5/revenue_info.htm" target="_blank"&gt;http://robslink.com/SAS/democd5/revenue_info.htm&lt;/A&gt;</description>
      <pubDate>Wed, 07 Jul 2010 12:02:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43663#M1428</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2010-07-07T12:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43664#M1429</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
thank you for your tip. now its working &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; do you have any idea how i join the upper and lower std and mean with a vertical line? &lt;BR /&gt;
&lt;BR /&gt;
Like: &lt;A href="http://web.anglia.ac.uk/numbers/biostatistics/mann_whitney/local_folder/C07fig02_ErrorPlot_Bones.jpg" target="_blank"&gt;http://web.anglia.ac.uk/numbers/biostatistics/mann_whitney/local_folder/C07fig02_ErrorPlot_Bones.jpg&lt;/A&gt;</description>
      <pubDate>Thu, 08 Jul 2010 09:46:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43664#M1429</guid>
      <dc:creator>marieK</dc:creator>
      <dc:date>2010-07-08T09:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43665#M1430</link>
      <description>Sounds like maybe you're wanting a "box plot"(?)  Gplot symbol statement's interpol=boxcti  (or other variations).&lt;BR /&gt;
&lt;BR /&gt;
Typically with a box plot, you let the software summarize the data - do you have the un-summarized data you could use?&lt;BR /&gt;
&lt;BR /&gt;
If you only have the summarized data, I think "proc boxplot" might be able to draw a boxplot from the summarized values, if you store them in a data set in a special way.  (I'm not too familiar with "proc boxplot" though, since it's not a SAS/GRAPH proc.)</description>
      <pubDate>Thu, 08 Jul 2010 13:14:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43665#M1430</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2010-07-08T13:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43666#M1431</link>
      <description>Hey,&lt;BR /&gt;
&lt;BR /&gt;
no i dont want a boxplot. i want a mean-and-error-plot (mean, mean+std, mean-std) &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I also have the un-summarized data.

Message was edited by: marieK</description>
      <pubDate>Fri, 09 Jul 2010 08:12:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43666#M1431</guid>
      <dc:creator>marieK</dc:creator>
      <dc:date>2010-07-09T08:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43667#M1432</link>
      <description>Hmm ... Well, since it sounds like you're pretty sure about what you want, I'll go ahead and give you the secret code to do it.  Here's some code that will produce a plot exactly like the one you posted a link to:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
data foo;&lt;BR /&gt;
Sex='female'; mean=.82; error=.05; lower=mean-error; upper=mean+error; output;&lt;BR /&gt;
Sex='male'; mean=.88; error=.045; lower=mean-error; upper=mean+error; output;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data foo_anno; set foo;&lt;BR /&gt;
xsys='2'; ysys='2'; when='b';&lt;BR /&gt;
xc=Sex; &lt;BR /&gt;
y=lower; function='move'; output;&lt;BR /&gt;
y=upper; function='draw'; output;&lt;BR /&gt;
&lt;BR /&gt;
xsys='2'; xc=Sex;&lt;BR /&gt;
y=upper; function='move'; output;&lt;BR /&gt;
xsys='7'; x=-2; function='draw'; output;&lt;BR /&gt;
x=+4; function='draw'; output;&lt;BR /&gt;
&lt;BR /&gt;
xsys='2'; xc=Sex;&lt;BR /&gt;
y=lower; function='move'; output;&lt;BR /&gt;
xsys='7'; x=-2; function='draw'; output;&lt;BR /&gt;
x=+4; function='draw'; output;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
axis1 label=(angle=90 '95% CI Bone Density Measurement (g/square)') &lt;BR /&gt;
 order=(.75 to .95 by .05) minor=none;&lt;BR /&gt;
axis2 label=('Sex') offset=(20,20);&lt;BR /&gt;
&lt;BR /&gt;
symbol1 value=none interpol=none color=black;&lt;BR /&gt;
symbol2 value=circle height=3pct interpol=none color=black;&lt;BR /&gt;
proc gplot data=foo anno=foo_anno;&lt;BR /&gt;
plot lower*Sex=1 mean*Sex=2 upper*Sex=1 / overlay&lt;BR /&gt;
 vaxis=axis1 haxis=axis2;&lt;BR /&gt;
run;</description>
      <pubDate>Fri, 09 Jul 2010 12:39:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43667#M1432</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2010-07-09T12:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43668#M1433</link>
      <description>Hi Robert,&lt;BR /&gt;
&lt;BR /&gt;
thanks for the code. It is working on the example, but unfortunately not on my data. It draws the mean but not the std &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;
On my x-axis i have a time-variable (-60 to 360 min). On my y-axis i have my measured value (i.e. pulse (in my data i have a score from 0 to 12)). For every measure (at beginning every 20 min then every 40 min) i want mean and std of pulse/score about all my 100 patients for every period (i have 4 periods) (period is my by-variable).&lt;BR /&gt;
&lt;BR /&gt;
It worked well with:&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
define statgraph errorplot;&lt;BR /&gt;
	begingraph;&lt;BR /&gt;
		layout overlay / xaxisopts=( Label="Time [min]" type=linear linearopts=(tickvaluelist=(-60 0 60 120 180 240 300 360) viewmin=-60 viewmax=360) ) &lt;BR /&gt;
						yaxisopts=( Label="Score" type=linear linearopts=( tickvaluelist=( 0 1 2 3 4 5 6 7 8 9 10 11 12 ) viewmin=0 viewmax=12 ) );&lt;BR /&gt;
			scatterplot x=time y=MeanScore /&lt;BR /&gt;
			yerrorlower=eval(MeanScore - STD)&lt;BR /&gt;
			yerrorupper=eval(MeanScore + STD);&lt;BR /&gt;
			seriesplot x=time_value y=MeanScore;&lt;BR /&gt;
			ReferenceLine y=6 / clip=true Lineattrs=( Pattern=34);&lt;BR /&gt;
		endlayout;&lt;BR /&gt;
	endgraph;&lt;BR /&gt;
end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc summary data=test nway;&lt;BR /&gt;
class time;&lt;BR /&gt;
var Score;&lt;BR /&gt;
by period ;&lt;BR /&gt;
output out=weights(drop=_type_ _freq_)&lt;BR /&gt;
mean=Mean std=STD;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc sgrender data=weights template=errorplot;&lt;BR /&gt;
By period;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
But unfortunately i cant customize my axis like i told above &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
regards,&lt;BR /&gt;
&lt;BR /&gt;
marie</description>
      <pubDate>Wed, 14 Jul 2010 10:57:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43668#M1433</guid>
      <dc:creator>marieK</dc:creator>
      <dc:date>2010-07-14T10:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43669#M1434</link>
      <description>I think I'm going to have to have some sample data to help.&lt;BR /&gt;
If you could send some to Robert.Allison@sas.com, that would be great...</description>
      <pubDate>Wed, 14 Jul 2010 12:08:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43669#M1434</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2010-07-14T12:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43670#M1435</link>
      <description>I found out by myself. juhuu &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; its because my variable is numeric not character and i replaced xc to x. Then  everything worked. But still have a problem with my by-Variable.&lt;BR /&gt;
&lt;BR /&gt;
This is my code now:&lt;BR /&gt;
&lt;BR /&gt;
proc sql;&lt;BR /&gt;
create table try as&lt;BR /&gt;
	select period, time,mean(Score) as mean format=6.2,&lt;BR /&gt;
	mean(Score)-std(Score) as std_lower, mean(Score)+std(Score) as std_upper&lt;BR /&gt;
	from final&lt;BR /&gt;
	group by time;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
Proc sort data=try;&lt;BR /&gt;
by period;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data test; set try;	&lt;BR /&gt;
&lt;BR /&gt;
If std_lower LT 0 Then std_lower=0; &lt;BR /&gt;
xsys='2'; ysys='2'; when='b';&lt;BR /&gt;
x=time;&lt;BR /&gt;
y=std_lower; function='move'; output;&lt;BR /&gt;
y=std_upper; function='draw'; output;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
xsys='2'; x=time;&lt;BR /&gt;
y=std_upper; function='move'; output;&lt;BR /&gt;
xsys='7'; x=-2; function='draw'; output;&lt;BR /&gt;
x=+4;function='draw'; output;&lt;BR /&gt;
&lt;BR /&gt;
If std_lower GT 0 Then do;&lt;BR /&gt;
xsys='2'; x=time;&lt;BR /&gt;
y=std_lower; function='move'; output;&lt;BR /&gt;
xsys='7'; x=-2; function='draw'; output;&lt;BR /&gt;
x=+4; function='draw'; output; end;&lt;BR /&gt;
run; &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
axis1 LABEL=(angle=90 Score') Order=(0 1 2 3 4 5 6 7 8 9 10 11 12) minor=none;&lt;BR /&gt;
	  axis2 LABEL=('Time [min]') Order=(-60 to 360 by 60)offset=(,2);&lt;BR /&gt;
&lt;BR /&gt;
symbol1 value=none interpol=none color=black;&lt;BR /&gt;
symbol2 value=circle height=3pct interpol=none color=black;&lt;BR /&gt;
proc gplot data=try anno=test;&lt;BR /&gt;
plot std_lower*time=1 mean*time=2 std_upper*time=1 / overlay vaxis=axis1 haxis=axis2 hminor=2 vref=6 LVREF=20;&lt;BR /&gt;
run; &lt;BR /&gt;
&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
If i put a by-Statement to proc gplot i get for every period the same Graph. Do you have any idea how i can draw a Graph for each period with the corresponding data (without having an own dataset for each period)?

Message was edited by: marieK</description>
      <pubDate>Wed, 14 Jul 2010 12:45:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43670#M1435</guid>
      <dc:creator>marieK</dc:creator>
      <dc:date>2010-07-14T12:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43671#M1436</link>
      <description>Hmm ... by-processing with annotate can be a bit tricky...&lt;BR /&gt;
&lt;BR /&gt;
Try moving the anno= from the gplot line:&lt;BR /&gt;
&lt;BR /&gt;
proc gplot data=try anno=test;&lt;BR /&gt;
plot std_lower*time_value=1 mean*time_value=2 std_upper*time_value=1 / overlay vaxis=axis1 haxis=axis2 hminor=2 vref=6 LVREF=20;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
To the options section (after the '/') in the plot statement:&lt;BR /&gt;
&lt;BR /&gt;
proc gplot data=try;&lt;BR /&gt;
plot std_lower*time_value=1 mean*time_value=2 std_upper*time_value=1 / anno=test overlay vaxis=axis1 haxis=axis2 hminor=2 vref=6 LVREF=20;</description>
      <pubDate>Wed, 14 Jul 2010 12:49:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43671#M1436</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2010-07-14T12:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Minor Tickmarks on X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43672#M1437</link>
      <description>doesnt work &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;</description>
      <pubDate>Wed, 14 Jul 2010 12:53:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Minor-Tickmarks-on-X-Axis/m-p/43672#M1437</guid>
      <dc:creator>marieK</dc:creator>
      <dc:date>2010-07-14T12:53:50Z</dc:date>
    </item>
  </channel>
</rss>

