<?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 Display x-axis tick mark values in boxplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25923#M753</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Oops - my bad!&amp;nbsp; I had been running in v9.3 DMS sas, which defaults to "ods graphics on", which is angling the x-axis values by defult (so that they fit).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Angling them manually will probably fix you up!...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AXIS1 LABEL=('X-axis label' JUSTIFY=CENTER) ORDER=(1 to 20 by 1) value=(angle=-45);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or, here's a complete program that should hard-code everything to come out the way I'm seeing it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let name=box001;&lt;BR /&gt;filename odsout '.';&lt;/P&gt;&lt;P&gt;data sims;&lt;BR /&gt;call streaminit(16812);&lt;BR /&gt;array o_sfc osfc1-osfc20;&lt;BR /&gt;mu=200;&lt;BR /&gt;disp=5;&lt;BR /&gt;alpha= mu / (disp*(1-(1/disp)));&lt;BR /&gt;sig2 = 1/alpha;&lt;BR /&gt;pie = alpha / (mu + alpha);&lt;BR /&gt;do center = 1 to 20;&lt;BR /&gt;do over o_sfc;&lt;BR /&gt;o_sfc=RAND('NEGBINOMIAL',pie,alpha);&lt;BR /&gt;end;&lt;BR /&gt;output;&lt;BR /&gt;end; *replicate do loop;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc transpose data=sims (drop=disp mu alpha sig2 pie) out=sims2; by center; run;&lt;/P&gt;&lt;P&gt;proc means data=sims2 n mean var std cv min max; class center;var col1;title'Averages';run;&lt;/P&gt;&lt;P&gt;proc format;&lt;BR /&gt;value myfmt&lt;BR /&gt;1 = "Center 1"&lt;BR /&gt;2 = "Center 2"&lt;BR /&gt;3 = "Center 3"&lt;BR /&gt;4 = "Center 4"&lt;BR /&gt;5 = "Center 5"&lt;BR /&gt;6 = "Center 6"&lt;BR /&gt;7 = "Center 7"&lt;BR /&gt;8 = "Center 8"&lt;BR /&gt;9 = "Center 9"&lt;BR /&gt;10 = "Center 10"&lt;BR /&gt;11 = "Center 11"&lt;BR /&gt;12 = "Center 12"&lt;BR /&gt;13 = "Center 13"&lt;BR /&gt;14 = "Center 14"&lt;BR /&gt;15 = "Center 15"&lt;BR /&gt;16 = "Center 16"&lt;BR /&gt;17 = "Center 17"&lt;BR /&gt;18 = "Center 18"&lt;BR /&gt;19 = "Center 19"&lt;BR /&gt;20 = "Center 20"&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GOPTIONS DEVICE=png;&lt;BR /&gt;ODS LISTING CLOSE;&lt;BR /&gt;ODS HTML path=odsout body="&amp;amp;name..htm" style=sasweb;&lt;/P&gt;&lt;P&gt;goptions htext=1.8pct ftext='arial';&lt;/P&gt;&lt;P&gt;AXIS1 LABEL=('X-axis label' JUSTIFY=CENTER) ORDER=(1 to 20 by 1) value=(angle=-45);&lt;/P&gt;&lt;P&gt;PROC BOXPLOT DATA=sims2;&lt;BR /&gt;format center myfmt.;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PLOT col1*center / BOXSTYLE=SCHEMATIC&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HAXIS=AXIS1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; des='' name="&amp;amp;name";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INSETGROUP N MEAN (5.1) STDDEV (4.1);&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;quit;&lt;BR /&gt;ODS HTML CLOSE;&lt;BR /&gt;ODS LISTING;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jul 2011 15:11:34 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2011-07-05T15:11:34Z</dc:date>
    <item>
      <title>Display x-axis tick mark values in boxplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25920#M750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I want to get a boxplot for my data which has 20 boxes. I used axis statement to rename the value of x-axis tick marks to center1 tocenter20. I like all of them appear in the x-axis. But boxplot procedure only give center1, center3 till center19. Is it due to too many tick marks so theycan fit in the x-axis? And is there any way to solve this problem and let 20centers all show up in x-axis? Below is my data, the code to generate boxplot follows:&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;/***data***/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;data sims; &lt;/P&gt;&lt;P&gt;call streaminit(16812);&lt;/P&gt;&lt;P&gt;array o_sfc osfc1-osfc20;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mu=200;&lt;/P&gt;&lt;P&gt;disp=5;&lt;/P&gt;&lt;P&gt;alpha= mu / (disp*(1-(1/disp)));&lt;/P&gt;&lt;P&gt;sig2 = 1/alpha;&lt;/P&gt;&lt;P&gt;pie = alpha / (mu + alpha);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do center = 1 to 20;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do over o_sfc;&lt;/P&gt;&lt;P&gt;o_sfc=RAND('NEGBINOMIAL',pie,alpha);&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output; &lt;/P&gt;&lt;P&gt;end; *replicate do loop;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc transpose data=sims (drop=disp mu alpha sig2 pie) out=sims2; by center; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc means data=sims2 n mean var std cv min max; class center;var col1;title'Averages';run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;STRONG style="color: navy; font-size: 10pt; background-color: white; font-family: 'Courier New';"&gt;/***code***/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;AXIS1 LABEL=(HEIGHT=1.8 'X-axis label' FONT='ARIAL' JUSTIFY=CENTER) &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORDER=(1 to 20 by 1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUE=('Center 1' 'Center 2' 'Center 3' 'Center 4' 'Center 5' 'Center 6' 'Center 7' 'Center 8' 'Center 9' 'Center 10' 'Center 11' 'Center 12'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Center 13' 'Center 14' 'Center 15' 'Center 16' 'Center 17' 'Center 18' 'Center 19' 'Center 20' ANGLE=90)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAJOR=() &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC BOXPLOT DATA=sims2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PLOT col1*center / BOXSTYLE=SCHEMATIC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HAXIS=AXIS1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INSETGROUP N MEAN (5.1) STDDEV (4.1);&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="color: black; background-color: white; font-family: 'Courier New'; font-size: 10pt;"&gt;Thank you very much,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="color: black; background-color: white; font-family: 'Courier New'; font-size: 10pt;"&gt;Lu&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 14:30:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25920#M750</guid>
      <dc:creator>lueryy2000</dc:creator>
      <dc:date>2011-07-05T14:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Display x-axis tick mark values in boxplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25921#M751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not too familiar with "proc boxplot" (since it's not actually part of the SAS/Graph product), but from my little bit of experience I seem to recall that it doesn't support all of the features of the axis statement ... therefore maybe it doesn't support hardcoding the value text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, one work-around would be to use a user-defined format, such as the following (and, of course, there are several different ways to define a user-defined format) ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AXIS1 LABEL=(HEIGHT=1.8 'X-axis label' FONT='ARIAL' JUSTIFY=CENTER)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORDER=(1 to 20 by 1);&lt;/P&gt;&lt;P&gt;proc format;&lt;BR /&gt;value myfmt&lt;BR /&gt;1 = "Center 1"&lt;BR /&gt;2 = "Center 2"&lt;BR /&gt;3 = "Center 3"&lt;BR /&gt;4 = "Center 4"&lt;BR /&gt;5 = "Center 5"&lt;BR /&gt;6 = "Center 6"&lt;BR /&gt;7 = "Center 7"&lt;BR /&gt;8 = "Center 8"&lt;BR /&gt;9 = "Center 9"&lt;BR /&gt;10 = "Center 10"&lt;BR /&gt;11 = "Center 11"&lt;BR /&gt;12 = "Center 12"&lt;BR /&gt;13 = "Center 13"&lt;BR /&gt;14 = "Center 14"&lt;BR /&gt;15 = "Center 15"&lt;BR /&gt;16 = "Center 16"&lt;BR /&gt;17 = "Center 17"&lt;BR /&gt;18 = "Center 18"&lt;BR /&gt;19 = "Center 19"&lt;BR /&gt;20 = "Center 20"&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC BOXPLOT DATA=sims2;&lt;BR /&gt;format center myfmt.;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PLOT col1*center / BOXSTYLE=SCHEMATIC&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HAXIS=AXIS1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INSETGROUP N MEAN (5.1) STDDEV (4.1);&lt;BR /&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 14:45:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25921#M751</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-07-05T14:45:11Z</dc:date>
    </item>
    <item>
      <title>Display x-axis tick mark values in boxplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25922#M752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer. But your way still only gives odd centers. And I hope all centers could appear cause in my true data all 20 centers have different names. Any other suggestions? Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 14:56:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25922#M752</guid>
      <dc:creator>lueryy2000</dc:creator>
      <dc:date>2011-07-05T14:56:49Z</dc:date>
    </item>
    <item>
      <title>Display x-axis tick mark values in boxplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25923#M753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Oops - my bad!&amp;nbsp; I had been running in v9.3 DMS sas, which defaults to "ods graphics on", which is angling the x-axis values by defult (so that they fit).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Angling them manually will probably fix you up!...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AXIS1 LABEL=('X-axis label' JUSTIFY=CENTER) ORDER=(1 to 20 by 1) value=(angle=-45);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or, here's a complete program that should hard-code everything to come out the way I'm seeing it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let name=box001;&lt;BR /&gt;filename odsout '.';&lt;/P&gt;&lt;P&gt;data sims;&lt;BR /&gt;call streaminit(16812);&lt;BR /&gt;array o_sfc osfc1-osfc20;&lt;BR /&gt;mu=200;&lt;BR /&gt;disp=5;&lt;BR /&gt;alpha= mu / (disp*(1-(1/disp)));&lt;BR /&gt;sig2 = 1/alpha;&lt;BR /&gt;pie = alpha / (mu + alpha);&lt;BR /&gt;do center = 1 to 20;&lt;BR /&gt;do over o_sfc;&lt;BR /&gt;o_sfc=RAND('NEGBINOMIAL',pie,alpha);&lt;BR /&gt;end;&lt;BR /&gt;output;&lt;BR /&gt;end; *replicate do loop;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc transpose data=sims (drop=disp mu alpha sig2 pie) out=sims2; by center; run;&lt;/P&gt;&lt;P&gt;proc means data=sims2 n mean var std cv min max; class center;var col1;title'Averages';run;&lt;/P&gt;&lt;P&gt;proc format;&lt;BR /&gt;value myfmt&lt;BR /&gt;1 = "Center 1"&lt;BR /&gt;2 = "Center 2"&lt;BR /&gt;3 = "Center 3"&lt;BR /&gt;4 = "Center 4"&lt;BR /&gt;5 = "Center 5"&lt;BR /&gt;6 = "Center 6"&lt;BR /&gt;7 = "Center 7"&lt;BR /&gt;8 = "Center 8"&lt;BR /&gt;9 = "Center 9"&lt;BR /&gt;10 = "Center 10"&lt;BR /&gt;11 = "Center 11"&lt;BR /&gt;12 = "Center 12"&lt;BR /&gt;13 = "Center 13"&lt;BR /&gt;14 = "Center 14"&lt;BR /&gt;15 = "Center 15"&lt;BR /&gt;16 = "Center 16"&lt;BR /&gt;17 = "Center 17"&lt;BR /&gt;18 = "Center 18"&lt;BR /&gt;19 = "Center 19"&lt;BR /&gt;20 = "Center 20"&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GOPTIONS DEVICE=png;&lt;BR /&gt;ODS LISTING CLOSE;&lt;BR /&gt;ODS HTML path=odsout body="&amp;amp;name..htm" style=sasweb;&lt;/P&gt;&lt;P&gt;goptions htext=1.8pct ftext='arial';&lt;/P&gt;&lt;P&gt;AXIS1 LABEL=('X-axis label' JUSTIFY=CENTER) ORDER=(1 to 20 by 1) value=(angle=-45);&lt;/P&gt;&lt;P&gt;PROC BOXPLOT DATA=sims2;&lt;BR /&gt;format center myfmt.;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PLOT col1*center / BOXSTYLE=SCHEMATIC&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HAXIS=AXIS1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; des='' name="&amp;amp;name";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INSETGROUP N MEAN (5.1) STDDEV (4.1);&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;quit;&lt;BR /&gt;ODS HTML CLOSE;&lt;BR /&gt;ODS LISTING;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 15:11:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25923#M753</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2011-07-05T15:11:34Z</dc:date>
    </item>
    <item>
      <title>Display x-axis tick mark values in boxplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25924#M754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is exactly what I want. Thank you very much.&lt;/P&gt;&lt;P&gt;Lu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 15:19:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Display-x-axis-tick-mark-values-in-boxplot/m-p/25924#M754</guid>
      <dc:creator>lueryy2000</dc:creator>
      <dc:date>2011-07-05T15:19:03Z</dc:date>
    </item>
  </channel>
</rss>

