<?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: F-test to compare two models in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/F-test-to-compare-two-models/m-p/148867#M262315</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest to take some basic statistical training to learn why the &lt;STRONG&gt;test&lt;/STRONG&gt; statement is redundant and how to interpret the analysis of variance of your model to determine if variable &lt;STRONG&gt;x3&lt;/STRONG&gt; is useful to predict &lt;STRONG&gt;y&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Mar 2014 16:53:03 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2014-03-19T16:53:03Z</dc:date>
    <item>
      <title>F-test to compare two models</title>
      <link>https://communities.sas.com/t5/SAS-Programming/F-test-to-compare-two-models/m-p/148866#M262314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;I have two models that i need to compare by&amp;nbsp; conducting&amp;nbsp; a F-test but got no clue how&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;y=b0+b1x1+b2x2&lt;/P&gt;&lt;P&gt;y=b0+b1x1+b2x2+b3x3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did google and came across this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;proc reg data = mydata ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; model y = x1 x2 x3 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; test x3 = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New';"&gt;run ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Is this something that i need to do,anyone please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 16:29:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/F-test-to-compare-two-models/m-p/148866#M262314</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2014-03-19T16:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: F-test to compare two models</title>
      <link>https://communities.sas.com/t5/SAS-Programming/F-test-to-compare-two-models/m-p/148867#M262315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest to take some basic statistical training to learn why the &lt;STRONG&gt;test&lt;/STRONG&gt; statement is redundant and how to interpret the analysis of variance of your model to determine if variable &lt;STRONG&gt;x3&lt;/STRONG&gt; is useful to predict &lt;STRONG&gt;y&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 16:53:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/F-test-to-compare-two-models/m-p/148867#M262315</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2014-03-19T16:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: F-test to compare two models</title>
      <link>https://communities.sas.com/t5/SAS-Programming/F-test-to-compare-two-models/m-p/148868#M262316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my second model is&amp;nbsp; actually more complicated than it&amp;nbsp; shows here in my post. For example lets say it is b0+b1x1+b2X2+....+b6x6&lt;/P&gt;&lt;P&gt;and i know how to test the null hypothesis based on the global F test regardless of whether the individual variables (x3-x6) contribute to the model or not but are&amp;nbsp; satisfactory F and p&amp;nbsp; results&amp;nbsp; for the second model enough to chose it over the&amp;nbsp; 1st model? &lt;BR /&gt;so there is no way i can compare these models and based on F and p determine if the complete model is good to go or not without running them separately ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 17:42:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/F-test-to-compare-two-models/m-p/148868#M262316</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2014-03-19T17:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: F-test to compare two models</title>
      <link>https://communities.sas.com/t5/SAS-Programming/F-test-to-compare-two-models/m-p/148869#M262317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A likelihood ratio test seems in order here.&amp;nbsp; Fit the full and reduced models in PROC MIXED, and get the difference in -2 log likelihood values.&amp;nbsp; This will be distributed as a chi square with degrees of freedom equal to the number of parameters "deleted" by reducing the model.&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>Thu, 20 Mar 2014 11:52:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/F-test-to-compare-two-models/m-p/148869#M262317</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-03-20T11:52:51Z</dc:date>
    </item>
  </channel>
</rss>

