<?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: adjusted R-squared in PROC GLM in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166453#M263802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sidenote, I get this in my Log:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"NOTE: Due to the presence of CLASS variables, an intercept is implicitly fitted. R-Square has&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;been corrected for the mean."&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Apr 2015 18:15:37 GMT</pubDate>
    <dc:creator>H</dc:creator>
    <dc:date>2015-04-28T18:15:37Z</dc:date>
    <item>
      <title>adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166446#M263795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What option will help the following PROC GLM to also report adjusted R-squared? thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC GLM DATA=have ;&lt;/P&gt;&lt;P&gt; ABSORB year;&lt;/P&gt;&lt;P&gt; MODEL y = a b c &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;/solution noint ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;RUN; &lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2014 05:25:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166446#M263795</guid>
      <dc:creator>Jonate_H</dc:creator>
      <dc:date>2014-12-31T05:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166447#M263796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not think there is such option why do not you use &lt;STRONG&gt;PROC RSQUARE&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2014 07:17:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166447#M263796</guid>
      <dc:creator>mohamed_zaki</dc:creator>
      <dc:date>2014-12-31T07:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166448#M263797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A couple of points: R squared and adjusted R squared are oddly defined with models without intercepts.&amp;nbsp; Still, you could plug the R-squared value obtained from GLM into the formula for adjusted R squared (no intercept):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADJRSQ(no int) = 1 - n * (1 - R^2)/(n - p), where n is the number of observations and p is the number of parameters fit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2014 17:48:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166448#M263797</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-12-31T17:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166449#M263798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Steve! that's very helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2014 20:42:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166449#M263798</guid>
      <dc:creator>Jonate_H</dc:creator>
      <dc:date>2014-12-31T20:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166450#M263799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Mohamed!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Dec 2014 20:42:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166450#M263799</guid>
      <dc:creator>Jonate_H</dc:creator>
      <dc:date>2014-12-31T20:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166451#M263800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve et al.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It was not clear to me if the model the R^2 value came from had to have any type of option in regards to the intercept or not. Do I run a normal proc glm when getting the R^2 value for the calculation. Also, do you know the name of this particular R^2 adjustment?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 17:17:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166451#M263800</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2015-04-28T17:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166452#M263801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't see a "-1" in the df line, so I am guessing the "noint" option needs to be used with the proc glm statement that generates the R^2, correct?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 18:08:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166452#M263801</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2015-04-28T18:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166453#M263802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sidenote, I get this in my Log:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"NOTE: Due to the presence of CLASS variables, an intercept is implicitly fitted. R-Square has&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;been corrected for the mean."&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 18:15:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166453#M263802</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2015-04-28T18:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166454#M263803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The formula I gave for the adjusted R^2 is just the standard adjustment, except that the n-1 in the numerator and denominator is replaced by n, since the intercept is not estimated.&amp;nbsp; I don't remember where I found that, but Draper and Smith would be a good place to start. It needs to be the value obtained with the noint option, for it to be consistent.&amp;nbsp; It is a measure of the association between the response and the X values, both considered as deviations from zero, rather than deviations from the mean.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 18:49:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/166454#M263803</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-04-28T18:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: adjusted R-squared in PROC GLM</title>
      <link>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/560203#M263804</link>
      <description>&lt;P&gt;Is p the number of parameters including or excluding the intercept?&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 15:52:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/adjusted-R-squared-in-PROC-GLM/m-p/560203#M263804</guid>
      <dc:creator>KALLEN</dc:creator>
      <dc:date>2019-05-20T15:52:25Z</dc:date>
    </item>
  </channel>
</rss>

