<?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: SAS : FORWARD selection specify AIC in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-FORWARD-selection-specify-AIC/m-p/237312#M43499</link>
    <description>Thanks Reeza, it perfectly works, but it seems the difference only lies in PROC PRINT. Why the AIC can display in the output only by add PRINT statement?</description>
    <pubDate>Wed, 02 Dec 2015 04:38:12 GMT</pubDate>
    <dc:creator>DingDing</dc:creator>
    <dc:date>2015-12-02T04:38:12Z</dc:date>
    <item>
      <title>SAS : FORWARD selection specify AIC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-FORWARD-selection-specify-AIC/m-p/237308#M43497</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I perform Forward selection and specify AIC, but there is no any AIC value in the output. What goes wrong in my codes?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC REG DATA=ca_2 ;
MODEL y=x1 x2 / SELECTION= FORWARD AIC ;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2015 02:42:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-FORWARD-selection-specify-AIC/m-p/237308#M43497</guid>
      <dc:creator>DingDing</dc:creator>
      <dc:date>2015-12-02T02:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAS : FORWARD selection specify AIC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-FORWARD-selection-specify-AIC/m-p/237310#M43498</link>
      <description>&lt;P&gt;Your code is fine, RTM:&lt;BR /&gt;&lt;BR /&gt;AIC&lt;BR /&gt;&lt;U&gt;&lt;STRONG&gt;outputs Akaike’s information criterion for each model selected (Akaike 1969; Judge et al. 1980) to the OUTEST= data set.&lt;/STRONG&gt;&lt;/U&gt; If SELECTION=ADJRSQ, SELECTION=RSQUARE, or SELECTION=CP is specified, then the AIC statistic is also added to the SubsetSelSummary table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_reg_sect013.htm" target="_self"&gt;http://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_reg_sect013.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&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 outest=want;
model weight = height age/selection=forward aic;
run;

proc print data=want;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2015 03:44:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-FORWARD-selection-specify-AIC/m-p/237310#M43498</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-12-02T03:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS : FORWARD selection specify AIC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-FORWARD-selection-specify-AIC/m-p/237312#M43499</link>
      <description>Thanks Reeza, it perfectly works, but it seems the difference only lies in PROC PRINT. Why the AIC can display in the output only by add PRINT statement?</description>
      <pubDate>Wed, 02 Dec 2015 04:38:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-FORWARD-selection-specify-AIC/m-p/237312#M43499</guid>
      <dc:creator>DingDing</dc:creator>
      <dc:date>2015-12-02T04:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: SAS : FORWARD selection specify AIC</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-FORWARD-selection-specify-AIC/m-p/237313#M43500</link>
      <description>That's incorrect, the AIC is added to the OUTEST data set, as highlighted in my cut/paste from the documentation. To view the AIC I then printed the OUTEST dataset, which I called WANT.</description>
      <pubDate>Wed, 02 Dec 2015 04:40:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-FORWARD-selection-specify-AIC/m-p/237313#M43500</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-12-02T04:40:00Z</dc:date>
    </item>
  </channel>
</rss>

