<?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: Normal Probability Plot on the Residuals with PROC REG statement in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Normal-Probability-Plot-on-the-Residuals-with-PROC-REG-statement/m-p/458311#M116281</link>
    <description>&lt;P&gt;The normal quantile plot might be enough?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
PROC REG DATA=census plots(only)=qq; 
MODEL TextSent = TextReceived;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 28 Apr 2018 05:33:24 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2018-04-28T05:33:24Z</dc:date>
    <item>
      <title>Normal Probability Plot on the Residuals with PROC REG statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Normal-Probability-Plot-on-the-Residuals-with-PROC-REG-statement/m-p/458295#M116273</link>
      <description>&lt;P&gt;I am learning about SAS programming. I am trying to create a normal probability plot under the PROC REG statement. Attached it is my data set. This is my model/code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DATA census;&lt;BR /&gt;INFILE "/folders/myfolders/census.txt"&lt;BR /&gt;DLM=',' FIRSTOBS=2 DSD MISSOVER;&lt;BR /&gt;INPUT ClassGrade Ageyears Height_cm Footlength_cm Armspan_cm SchoolSleep NonSchoolSleep TextSent TextReceived;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;PROC PRINT DATA= census;&lt;BR /&gt;RUN; &lt;BR /&gt;&lt;BR /&gt;PROC REG DATA=census; &lt;BR /&gt;MODEL TextSent = TextReceived;&lt;BR /&gt;RUN; &lt;BR /&gt;&lt;BR /&gt;ODS GRAPHICS ON; &lt;BR /&gt;&lt;BR /&gt;PROC REG DATA=census&lt;BR /&gt; PLOTS TextSent*TextReceived npp.*r.;&lt;BR /&gt; MODEL TextSent = TextReceived;&lt;BR /&gt; title 'Normal Probability Plot On The Residuals';&lt;BR /&gt;RUN;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But my code is not working. How can I possibly generate my desired plot? Normal Probability Plot on the residuals?&lt;/P&gt;</description>
      <pubDate>Sat, 28 Apr 2018 01:39:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Normal-Probability-Plot-on-the-Residuals-with-PROC-REG-statement/m-p/458295#M116273</guid>
      <dc:creator>Miah</dc:creator>
      <dc:date>2018-04-28T01:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Normal Probability Plot on the Residuals with PROC REG statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Normal-Probability-Plot-on-the-Residuals-with-PROC-REG-statement/m-p/458298#M116275</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The PLOTS syntax you're using is no longer supported in PROC REG, but you should look at the default plots and see if that meets your need.&amp;nbsp;&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 plots;
model weight = height age;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;If this doesn't meet your needs, you can use an OUTPUT statement to capture the residuals and use PROC UNIVARIATE or SGPLOT to create the plot 'manually'.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS. Please include a clear description of what "doesn't work" means. That could mean anything from your computer literally being on fire to a simple syntax error message. Include the log at minimum.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Apr 2018 01:52:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Normal-Probability-Plot-on-the-Residuals-with-PROC-REG-statement/m-p/458298#M116275</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-28T01:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Normal Probability Plot on the Residuals with PROC REG statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Normal-Probability-Plot-on-the-Residuals-with-PROC-REG-statement/m-p/458311#M116281</link>
      <description>&lt;P&gt;The normal quantile plot might be enough?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
PROC REG DATA=census plots(only)=qq; 
MODEL TextSent = TextReceived;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Apr 2018 05:33:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Normal-Probability-Plot-on-the-Residuals-with-PROC-REG-statement/m-p/458311#M116281</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-04-28T05:33:24Z</dc:date>
    </item>
  </channel>
</rss>

