<?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 Plot! in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Plot/m-p/545632#M150975</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 278px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28159i704B1C202CCCC4F8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I plot line graph using this table by treatment. So there should be 2 line graphs. X-axis should be 'days' with 0,2,4,8,10,12, and Y-axis should be strength.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried as below but quite doesn't work..&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;goptions reset = all;
   symbol1 value=circle color=black interpol = join;
   symbol2 value=triangle color=red interpol = join;
   axis1 order =(0 to 12 by 2) label=('Days');
   axis2 order =(50 to 90 by 1) label = ('strength');

proc gplot data=t_exercise_mean;
	plot strength1*treatment;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 24 Mar 2019 21:10:12 GMT</pubDate>
    <dc:creator>monona</dc:creator>
    <dc:date>2019-03-24T21:10:12Z</dc:date>
    <item>
      <title>Plot!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Plot/m-p/545632#M150975</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 278px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28159i704B1C202CCCC4F8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I plot line graph using this table by treatment. So there should be 2 line graphs. X-axis should be 'days' with 0,2,4,8,10,12, and Y-axis should be strength.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried as below but quite doesn't work..&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;goptions reset = all;
   symbol1 value=circle color=black interpol = join;
   symbol2 value=triangle color=red interpol = join;
   axis1 order =(0 to 12 by 2) label=('Days');
   axis2 order =(50 to 90 by 1) label = ('strength');

proc gplot data=t_exercise_mean;
	plot strength1*treatment;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 24 Mar 2019 21:10:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Plot/m-p/545632#M150975</guid>
      <dc:creator>monona</dc:creator>
      <dc:date>2019-03-24T21:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Plot!</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Plot/m-p/545633#M150976</link>
      <description>&lt;P&gt;First, you have to create a numeric variable named DAYS, which does not exist in your data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
    set have;
    days=substr(_name_,5)+0;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then you should be able to create a plot&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=want;
    plot strength1 * days = treatment;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 24 Mar 2019 21:20:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Plot/m-p/545633#M150976</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-03-24T21:20:55Z</dc:date>
    </item>
  </channel>
</rss>

