<?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: Graph in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Graph/m-p/362572#M12622</link>
    <description>&lt;P&gt;PROC gplot data = g1;&lt;BR /&gt;title 'Blood Glucose Level after 10 A.M Meal';&lt;BR /&gt;plot gl*x = subject/&lt;BR /&gt;haxis=-1 to 27 by 2&lt;BR /&gt;vaxis=3.00 to 10.00 by 1;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The horizontal axis is adjust everytime I make an adjust to it but the vertical axis doesn't change at all.&lt;/P&gt;</description>
    <pubDate>Mon, 29 May 2017 23:34:41 GMT</pubDate>
    <dc:creator>Wang2017</dc:creator>
    <dc:date>2017-05-29T23:34:41Z</dc:date>
    <item>
      <title>Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graph/m-p/362570#M12620</link>
      <description>&lt;P&gt;Can someone show me how to adjust the y-axis please. I am new to SAS and just couldn't figure out how to adjust the scale. I want the y-axis to go from 3 to 10. I used vaxis=3 to 10 by 1 but still doesn't work. Tried a bunch of other things but doesn't work. Comes out like that.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13890iC1666C3C9EC5C558/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="image1 2.JPG" title="image1 2.JPG" /&gt;</description>
      <pubDate>Mon, 29 May 2017 23:08:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graph/m-p/362570#M12620</guid>
      <dc:creator>Wang2017</dc:creator>
      <dc:date>2017-05-29T23:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graph/m-p/362571#M12621</link>
      <description>&lt;P&gt;Please tell us what PROC in SAS you are using. Also, show us your code.&lt;/P&gt;</description>
      <pubDate>Mon, 29 May 2017 23:31:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graph/m-p/362571#M12621</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-05-29T23:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graph/m-p/362572#M12622</link>
      <description>&lt;P&gt;PROC gplot data = g1;&lt;BR /&gt;title 'Blood Glucose Level after 10 A.M Meal';&lt;BR /&gt;plot gl*x = subject/&lt;BR /&gt;haxis=-1 to 27 by 2&lt;BR /&gt;vaxis=3.00 to 10.00 by 1;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The horizontal axis is adjust everytime I make an adjust to it but the vertical axis doesn't change at all.&lt;/P&gt;</description>
      <pubDate>Mon, 29 May 2017 23:34:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graph/m-p/362572#M12622</guid>
      <dc:creator>Wang2017</dc:creator>
      <dc:date>2017-05-29T23:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Graph/m-p/362576#M12623</link>
      <description>&lt;P&gt;Can you switch to SGPLOT? It's easier to use than GPLOT in my experience, the syntax is more user friendly and you get better quality graphs.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=g1;
title 'Blood Glucose Level after 10 am Meal';
scatter x=x y=gl / group = subject;

yaxis values = (-1 to 27 by 2);
xaxis values = (3 to 10 by 1);

run;quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 May 2017 00:22:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Graph/m-p/362576#M12623</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-05-30T00:22:37Z</dc:date>
    </item>
  </channel>
</rss>

