<?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: Linear Trendline on PROC GPLOT in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/540032#M7161</link>
    <description>&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
    <pubDate>Mon, 04 Mar 2019 14:14:30 GMT</pubDate>
    <dc:creator>sasgiaz</dc:creator>
    <dc:date>2019-03-04T14:14:30Z</dc:date>
    <item>
      <title>Linear Trendline on PROC GPLOT</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/539949#M7154</link>
      <description>&lt;P&gt;Hi.&amp;nbsp; I need to add linear trendline to the data plot to show its trend.&lt;/P&gt;&lt;P&gt;What syntax could I add into this following proc gplot?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc gplot data = armaxvlp;&lt;BR /&gt;symbol1 i = splines v = dot;&lt;BR /&gt;plot Bill*Waktu;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thankyou.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 00:16:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/539949#M7154</guid>
      <dc:creator>sasgiaz</dc:creator>
      <dc:date>2019-03-04T00:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Linear Trendline on PROC GPLOT</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/540014#M7158</link>
      <description>&lt;P&gt;I am going to guess that by "linear trendline", you mean a linear regression line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In that case:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;symbol1 i = rl v = dot;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Mar 2019 13:14:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/540014#M7158</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-03-04T13:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Linear Trendline on PROC GPLOT</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/540019#M7159</link>
      <description>&lt;P&gt;Could I have it both rl and splines on the data plot?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 13:34:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/540019#M7159</guid>
      <dc:creator>sasgiaz</dc:creator>
      <dc:date>2019-03-04T13:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Linear Trendline on PROC GPLOT</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/540020#M7160</link>
      <description>&lt;P&gt;Yes. (Also please look at the SGPLOT procedure, this may be simpler to use in the long run, and has a lot of nice features)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
    set sashelp.class;
    seq=_n_;
run;

symbol1 i=rl v=dot c=green;
symbol2 i=splines v=none c=red;
proc gplot data=class;
    plot height*seq=1 height*seq=2/overlay;
run;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Mar 2019 13:42:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/540020#M7160</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-03-04T13:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Linear Trendline on PROC GPLOT</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/540032#M7161</link>
      <description>&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 14:14:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Linear-Trendline-on-PROC-GPLOT/m-p/540032#M7161</guid>
      <dc:creator>sasgiaz</dc:creator>
      <dc:date>2019-03-04T14:14:30Z</dc:date>
    </item>
  </channel>
</rss>

