<?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: Error in Linear regression while creating a plot in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Error-in-Linear-regression-while-creating-a-plot/m-p/148907#M7842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you, I will use this option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Oct 2014 13:21:48 GMT</pubDate>
    <dc:creator>Shivi82</dc:creator>
    <dc:date>2014-10-30T13:21:48Z</dc:date>
    <item>
      <title>Error in Linear regression while creating a plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Error-in-Linear-regression-while-creating-a-plot/m-p/148905#M7840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PROC REG DATA=SizePrice;&lt;/P&gt;&lt;P&gt;MODEL Price=Size ;&lt;/P&gt;&lt;P&gt;PLOT Price*Size='+' p.*Size='*' / overlay;&lt;/P&gt;&lt;P&gt;OUTPUT OUT=NEW P=PRED;&lt;/P&gt;&lt;P&gt;RUN; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello All, as per the code above i am creating a linear regression model and want to plot the values however while doing so i get an error message:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black;"&gt;NOTE: The previous statement has been deleted.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red;"&gt;ERROR 22-322: Syntax error, expecting one of the following: a name, ;, (, /, ADJRSQ., AIC., BIC., COOKD., COVRATIO., CP., DFBETAS., &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DFFITS., EDF., GMSEP., H., IN., JP., L95., L95M., LCL., LCLM., MSE., NP., NPP., NQQ., OBS., P., PC., PRED., &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PREDICTED., PRESS., R., RESIDUAL., RMSE., RSQ., RSTUDENT., SBC., SP., SSE., STDI., STDP., STDR., STUDENT., U95., &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; U95M., UCL., UCLM..&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: red;"&gt;ERROR 201-322: The option is not recognized and will be ignored&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest what is that i missed here.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 08:54:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Error-in-Linear-regression-while-creating-a-plot/m-p/148905#M7840</guid>
      <dc:creator>Shivi82</dc:creator>
      <dc:date>2014-10-30T08:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Linear regression while creating a plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Error-in-Linear-regression-while-creating-a-plot/m-p/148906#M7841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow.&amp;nbsp; I haven't seen anyone use the old-style graphics in 10 years. You should consider moving to ODS statistical graphics, which have been around since the early SAS 9 days. The graph you want is called a FitPlot. PROC REG can create about 20 graphs automatically:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;PROC REG DATA=sashelp.class plot(only)=(FitPlot);&lt;/P&gt;&lt;P&gt;MODEL weight=height ;&lt;/P&gt;&lt;P&gt;OUTPUT OUT=NEW P=PRED;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 13:03:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Error-in-Linear-regression-while-creating-a-plot/m-p/148906#M7841</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2014-10-30T13:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Linear regression while creating a plot</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Error-in-Linear-regression-while-creating-a-plot/m-p/148907#M7842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you, I will use this option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 13:21:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Error-in-Linear-regression-while-creating-a-plot/m-p/148907#M7842</guid>
      <dc:creator>Shivi82</dc:creator>
      <dc:date>2014-10-30T13:21:48Z</dc:date>
    </item>
  </channel>
</rss>

