<?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: Analyze the residual in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719511#M222785</link>
    <description>&lt;P&gt;Residual vs fit plot, normal qq plot. Response is Score.&lt;/P&gt;</description>
    <pubDate>Tue, 16 Feb 2021 01:10:12 GMT</pubDate>
    <dc:creator>pansoh</dc:creator>
    <dc:date>2021-02-16T01:10:12Z</dc:date>
    <item>
      <title>Analyze the residual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719478#M222764</link>
      <description>&lt;P&gt;I am going to do the residual analyze. So I need the residual plot. I am not sure how to fix the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA Golf;&lt;BR /&gt;INPUT Season $ Score;&lt;BR /&gt;Datalines;&lt;BR /&gt;Summer 83&lt;BR /&gt;Summer 85&lt;BR /&gt;Summer 85&lt;BR /&gt;Summer 87&lt;BR /&gt;Summer 90&lt;BR /&gt;Summer 88&lt;BR /&gt;Summer 88&lt;BR /&gt;Summer 84&lt;BR /&gt;Summer 91&lt;BR /&gt;Summer 90&lt;BR /&gt;Shoulder 91&lt;BR /&gt;Shoulder 87&lt;BR /&gt;Shoulder 84&lt;BR /&gt;Shoulder 87&lt;BR /&gt;Shoulder 85&lt;BR /&gt;Shoulder 86&lt;BR /&gt;Shoulder 83&lt;BR /&gt;Winter 94&lt;BR /&gt;Winter 91&lt;BR /&gt;Winter 87&lt;BR /&gt;Winter 85&lt;BR /&gt;Winter 87&lt;BR /&gt;Winter 91&lt;BR /&gt;Winter 92&lt;BR /&gt;Winter 86&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;proc print;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC REG DATA=Golf;&lt;BR /&gt;Model Score =Season;&lt;/P&gt;&lt;P&gt;Run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ERROR: Variable Season in list does not match type prescribed for this list.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 21:32:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719478#M222764</guid>
      <dc:creator>pansoh</dc:creator>
      <dc:date>2021-02-15T21:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze the residual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719503#M222779</link>
      <description>&lt;P&gt;The message is clear.&lt;/P&gt;
&lt;P&gt;A regression is performed between 2 numeric variables; you have a character variable here.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 23:49:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719503#M222779</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-02-15T23:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze the residual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719506#M222781</link>
      <description>&lt;P&gt;How to correct it?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 00:25:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719506#M222781</guid>
      <dc:creator>pansoh</dc:creator>
      <dc:date>2021-02-16T00:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze the residual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719509#M222784</link>
      <description>&lt;P&gt;what are you trying to achieve?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 00:53:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719509#M222784</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-02-16T00:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze the residual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719511#M222785</link>
      <description>&lt;P&gt;Residual vs fit plot, normal qq plot. Response is Score.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 01:10:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719511#M222785</guid>
      <dc:creator>pansoh</dc:creator>
      <dc:date>2021-02-16T01:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Analyze the residual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719525#M222796</link>
      <description>&lt;P&gt;Note that there can only be one predicted value for each season (the season mean score). Try this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
PROC glm DATA=Golf plots=DIAGNOSTICS(LABEL UNPACK);
class season;
Model Score = Season;
Run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Feb 2021 04:22:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Analyze-the-residual/m-p/719525#M222796</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2021-02-16T04:22:50Z</dc:date>
    </item>
  </channel>
</rss>

