<?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: How to warning messages in log when i use proc gplot procedure in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-warning-messages-in-log-when-i-use-proc-gplot-procedure/m-p/547654#M17973</link>
    <description>&lt;P&gt;You did not check your data ranges carefully enough before saying that the values are inside the axis definitions. The observations 33 , 39&amp;nbsp;have values greater than 20&amp;nbsp;which is outside the definition of AXIS2 (order&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;-30&lt;/SPAN&gt; to &lt;SPAN class="token number"&gt;20&lt;/SPAN&gt;&amp;nbsp;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The exclusion of those yvar values would cause at least two of the fewer than 3 observations messages.&lt;/P&gt;</description>
    <pubDate>Mon, 01 Apr 2019 16:35:49 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-04-01T16:35:49Z</dc:date>
    <item>
      <title>How to warning messages in log when i use proc gplot procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-warning-messages-in-log-when-i-use-proc-gplot-procedure/m-p/547538#M17971</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;BR /&gt;&lt;BR /&gt;ods rtf file = "%sysfunc(pathname(one, f))/one.rtf" nogfootnote nogtitle bodytitle;
    option nodate nonumber;

                                                                                                        
    goptions reset=all cback=white htext=10pt htitle=12pt device=PNG;

    title1 font="Times New Roman" j=center height=12PT color=black 
           " Mean Change";
    
    axis1 label=("Study") offset=(.3 cm) minor=none value=("Week 3~maa~TTT" "Week 6~119~48" "Week 15~65~23" "Week 24~31~12" "Week 33~14~4"
"Week 42~12~4" "Week 51~6~3" "") order=(1 to 8) split='~';
    axis2 label=(angle=90 "Mean Change") order=-30 to 20 by 10 minor=(n=1);

    symbol1 interpol=hiloctj color=b line=1;
    symbol2 interpol=hiloctj color=depk line=1;

    symbol3 interpol=none color=b value=dot height=1;
    symbol4 interpol=none color=depk value=squarefilled height=1;

                                                                                                 
    legend1 label=('') position=(top left inside) repeat=3 down=2 mode=protect;  

 filename grafout "%sysfunc(pathname(one,f))/one.png";
goptions gsfname=grafout gsfmode=replace device=png;
    proc gplot data=aaa;  
        plot yvar*avisitn=trt01p / haxis=axis1 vaxis=axis2 nolegend;                                                                    
        plot2 mean*avisitn=trt01p / vaxis=axis2 noaxis legend=legend1;    
    run;                                                                                                                                    
    quit; 

    ods rtf close;
    ods listing;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Dear ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am attaching the data I used and pgm i ran.. I am getting the following the warning messages(shown below). Please help. I tried solutions mentioned in log. But it did not give me the correct output where graph values are not aligned properly.&amp;nbsp; Even though the vales fall with in the axis range&amp;nbsp; I am getting the warning messages.&amp;nbsp; &amp;nbsp;Please suggest.&amp;nbsp; Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WARNING: Fewer than three node values for at least one observation in&lt;BR /&gt;HILOC interpolation. Mean value used for tick placement.&lt;BR /&gt;NOTE: 2 observation(s) outside the axis range for the YVAR * AVISITN&lt;BR /&gt;= TRT01P request.&lt;BR /&gt;WARNING: Values exist outside the axis range, but only values within&lt;BR /&gt;the displayed range took part in interpolation calculations&lt;BR /&gt;for the PLOT statement. Use the MODE=INCLUDE option in the&lt;BR /&gt;SYMBOL statement to include values outside the axis range in&lt;BR /&gt;the calculations.&lt;BR /&gt;WARNING: Fewer than three node values for at least one observation in&lt;BR /&gt;HILOC interpolation. Mean value used for tick placement.&lt;BR /&gt;NOTE: 2 observation(s) outside the axis range for the YVAR * AVISITN&lt;BR /&gt;= TRT01P request.&lt;BR /&gt;WARNING: Values exist outside the axis range, but only values within&lt;BR /&gt;the displayed range took part in interpolation calculations&lt;BR /&gt;for the PLOT statement. Use the MODE=INCLUDE option in the&lt;BR /&gt;SYMBOL statement to include values outside the axis range in&lt;BR /&gt;the calculations.&lt;BR /&gt;WARNING: Fewer than three node values for at least one observation in&lt;BR /&gt;HILOC interpolation. Mean value used for tick placement.&lt;BR /&gt;NOTE: 2 observation(s) outside the axis range for the YVAR * AVISITN&lt;BR /&gt;= TRT01P request.&lt;BR /&gt;WARNING: Values exist outside the axis range, but only values within&lt;BR /&gt;the displayed range took part in interpolation calculations&lt;BR /&gt;for the PLOT statement. Use the MODE=INCLUDE option in the&lt;BR /&gt;SYMBOL statement to include values outside the axis range in&lt;BR /&gt;the calculations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 02:55:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-warning-messages-in-log-when-i-use-proc-gplot-procedure/m-p/547538#M17971</guid>
      <dc:creator>knveraraju91</dc:creator>
      <dc:date>2019-04-01T02:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to warning messages in log when i use proc gplot procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-warning-messages-in-log-when-i-use-proc-gplot-procedure/m-p/547654#M17973</link>
      <description>&lt;P&gt;You did not check your data ranges carefully enough before saying that the values are inside the axis definitions. The observations 33 , 39&amp;nbsp;have values greater than 20&amp;nbsp;which is outside the definition of AXIS2 (order&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;-30&lt;/SPAN&gt; to &lt;SPAN class="token number"&gt;20&lt;/SPAN&gt;&amp;nbsp;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The exclusion of those yvar values would cause at least two of the fewer than 3 observations messages.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 16:35:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-warning-messages-in-log-when-i-use-proc-gplot-procedure/m-p/547654#M17973</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-01T16:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to warning messages in log when i use proc gplot procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-warning-messages-in-log-when-i-use-proc-gplot-procedure/m-p/548536#M17980</link>
      <description>&lt;P&gt;Hi Thank you for your time. After extending Y-axis&amp;nbsp; to -30 to 30, I still getting warning messages in log. I have tried a few things but did not resolve it. Any suggestions please. Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 15:25:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-warning-messages-in-log-when-i-use-proc-gplot-procedure/m-p/548536#M17980</guid>
      <dc:creator>knveraraju91</dc:creator>
      <dc:date>2019-04-04T15:25:23Z</dc:date>
    </item>
  </channel>
</rss>

