<?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: model selection based on AICC in proc logistic in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651061#M195295</link>
    <description>&lt;P&gt;Thank you this is very helpful!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 May 2020 12:21:11 GMT</pubDate>
    <dc:creator>lillymaginta</dc:creator>
    <dc:date>2020-05-27T12:21:11Z</dc:date>
    <item>
      <title>model selection based on AICC in proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651030#M195274</link>
      <description>&lt;P&gt;I am trying to specify model selection based on AICC but I get error in the following statement:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic descending data=aim2bx;
class ut (ref= '1')&amp;nbsp; drug / param = ref;
model ut= drug age/ link = glogit SELECTION = FORWARD (select= AICC);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 May 2020 10:31:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651030#M195274</guid>
      <dc:creator>lillymaginta</dc:creator>
      <dc:date>2020-05-27T10:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: model selection based on AICC in proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651047#M195284</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/72105"&gt;@lillymaginta&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe you could try to switch to PROC HPLOGISTIC,&amp;nbsp;&lt;SPAN&gt;which is high-performance statistical procedure that fits logistic regression models for binary, binomial, and multinomial data on the SAS appliance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The SELECTION statement allow the use of AICC as a selection criterion:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc hplogistic data=aim2bx ;
	class ut (ref= '1')  drug / param = ref;
	model ut= drug age/ link = glogit;
	selection method= forward (select= AICC);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 May 2020 11:42:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651047#M195284</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-27T11:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: model selection based on AICC in proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651050#M195287</link>
      <description>&lt;P&gt;Thank you! The statement output parameter estimates only, would it be possible to output the odds ratio?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 11:51:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651050#M195287</guid>
      <dc:creator>lillymaginta</dc:creator>
      <dc:date>2020-05-27T11:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: model selection based on AICC in proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651057#M195292</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/72105"&gt;@lillymaginta&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="page" title="Page 5"&gt;
&lt;DIV class="layoutArea"&gt;
&lt;DIV class="column"&gt;
&lt;P&gt;&lt;SPAN&gt;The LOGISTIC procedure offers a wide variety of postfitting analyses, such as contrasts, estimates, tests of model effects, least squares means, and odds ratios. PROC HPLOGISTIC is limited in postfitting functionality, since with large data sets the focus is primarily on model fitting and scoring.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I would suggest that you use it for model selection and then run a PROC LOGISTIC on the select model to get OR.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;best,&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 27 May 2020 12:12:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651057#M195292</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-05-27T12:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: model selection based on AICC in proc logistic</title>
      <link>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651061#M195295</link>
      <description>&lt;P&gt;Thank you this is very helpful!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 12:21:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/model-selection-based-on-AICC-in-proc-logistic/m-p/651061#M195295</guid>
      <dc:creator>lillymaginta</dc:creator>
      <dc:date>2020-05-27T12:21:11Z</dc:date>
    </item>
  </channel>
</rss>

