<?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: proc boxplot vaxis not working in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-boxplot-vaxis-not-working/m-p/516302#M17488</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/77314"&gt;@romangelzhaeuse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think SAS arbitrarily decides to deviate from the axis specification just because one or a few values in Gruppe 1 slightly exceed the maximum tick mark value of 150 (this behavior is really annoying), see warnings in the log:&lt;/P&gt;
&lt;PRE&gt;&lt;FONT color="#008000"&gt;WARNING: For process variable IL10B the VAXIS= values specified do not cover the data range.
WARNING: Default scaling is substituted.&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;A workaround is an&amp;nbsp;axis specification that does "cover the data range" and to suppress the newly introduced tick mark values:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;axis1 order=(0 to 175 by 25) value=(t=2 '' t=4 '' t=6 '' t=8 '');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;(I think "0 to 200 by 50" would leave too much white space.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then specify &lt;FONT face="courier new,courier"&gt;vaxis=&lt;STRONG&gt;axis1&lt;/STRONG&gt;&lt;/FONT&gt; in the PLOT statement. More effort (probably&amp;nbsp;involving the annotate feature) would be required to suppress the new tick marks, too.&lt;/P&gt;</description>
    <pubDate>Tue, 27 Nov 2018 13:37:58 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2018-11-27T13:37:58Z</dc:date>
    <item>
      <title>proc boxplot vaxis not working</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-boxplot-vaxis-not-working/m-p/516241#M17487</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can make proc boxplot actually use my vaxis tickmarks without changing the "ods graphics off;"? ("ods graphics off;" is needed in order to display the colors.)&lt;/P&gt;&lt;P&gt;The following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics off;
proc boxplot data=Simon4;
plot (IL10B)*Gruppe/ HEIGHT=4 HEIGHT=4 boxstyle=SCHEMATICID cboxes=black cboxfill=(MF_IL10) cvref = MF_IL10 
 vaxis=0 50 100 150;
where Gruppe in (1 2);
run;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Delivers (instead of showing only the ticks at 0 50 100 150):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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="boxplots2.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/25193iD6EE3AA355787153/image-size/large?v=v2&amp;amp;px=999" role="button" title="boxplots2.png" alt="boxplots2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 07:34:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-boxplot-vaxis-not-working/m-p/516241#M17487</guid>
      <dc:creator>romangelzhaeuse</dc:creator>
      <dc:date>2018-11-27T07:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: proc boxplot vaxis not working</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-boxplot-vaxis-not-working/m-p/516302#M17488</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/77314"&gt;@romangelzhaeuse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think SAS arbitrarily decides to deviate from the axis specification just because one or a few values in Gruppe 1 slightly exceed the maximum tick mark value of 150 (this behavior is really annoying), see warnings in the log:&lt;/P&gt;
&lt;PRE&gt;&lt;FONT color="#008000"&gt;WARNING: For process variable IL10B the VAXIS= values specified do not cover the data range.
WARNING: Default scaling is substituted.&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;A workaround is an&amp;nbsp;axis specification that does "cover the data range" and to suppress the newly introduced tick mark values:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;axis1 order=(0 to 175 by 25) value=(t=2 '' t=4 '' t=6 '' t=8 '');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;(I think "0 to 200 by 50" would leave too much white space.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then specify &lt;FONT face="courier new,courier"&gt;vaxis=&lt;STRONG&gt;axis1&lt;/STRONG&gt;&lt;/FONT&gt; in the PLOT statement. More effort (probably&amp;nbsp;involving the annotate feature) would be required to suppress the new tick marks, too.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 13:37:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-boxplot-vaxis-not-working/m-p/516302#M17488</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2018-11-27T13:37:58Z</dc:date>
    </item>
  </channel>
</rss>

