<?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 template Regression Plot with No intercept in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444835#M15299</link>
    <description>&lt;P&gt;No.&amp;nbsp; You can run PROC REG and output the predicted values and then plot them using a series plot.&lt;/P&gt;</description>
    <pubDate>Mon, 12 Mar 2018 16:52:10 GMT</pubDate>
    <dc:creator>WarrenKuhfeld</dc:creator>
    <dc:date>2018-03-12T16:52:10Z</dc:date>
    <item>
      <title>Proc template Regression Plot with No intercept</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444832#M15298</link>
      <description>&lt;P&gt;Is there any option in proc template to plot regression plot with no intercept ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;regressionplot x =&amp;nbsp; test1 y = test2 / name="fitline" legendlabel="Regression line";&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 16:50:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444832#M15298</guid>
      <dc:creator>Leo9</dc:creator>
      <dc:date>2018-03-12T16:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc template Regression Plot with No intercept</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444835#M15299</link>
      <description>&lt;P&gt;No.&amp;nbsp; You can run PROC REG and output the predicted values and then plot them using a series plot.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 16:52:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444835#M15299</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2018-03-12T16:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc template Regression Plot with No intercept</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444855#M15301</link>
      <description>&lt;P&gt;Haven't done regression line without using regression plot. Which parameters/predicated values from proc reg should be use to plot this ?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 17:19:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444855#M15301</guid>
      <dc:creator>Leo9</dc:creator>
      <dc:date>2018-03-12T17:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc template Regression Plot with No intercept</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444862#M15302</link>
      <description>&lt;P&gt;Here is an example with SGPLOT.&amp;nbsp; The NOINT option forces the line through 0,0.&amp;nbsp; The output statement stores the predicted values in the variable p.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=sashelp.class;
   model weight = height / noint;
   output out=p p=p;
quit;

proc sort data=p; by height; run;

proc sgplot data=p;
   scatter y=weight x=height;
   series y=p x=height;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 12 Mar 2018 17:32:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444862#M15302</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2018-03-12T17:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: Proc template Regression Plot with No intercept</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444883#M15304</link>
      <description>&lt;P&gt;Thank you so much. This is very helpful.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 18:52:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Proc-template-Regression-Plot-with-No-intercept/m-p/444883#M15304</guid>
      <dc:creator>Leo9</dc:creator>
      <dc:date>2018-03-12T18:52:16Z</dc:date>
    </item>
  </channel>
</rss>

