<?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: Run Logistic regression- wald statsitics for type3 analysis in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Run-Logistic-regression-wald-statsitics-for-type3-analysis/m-p/953557#M372511</link>
    <description>&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_logistic_details51.htm" target="_self"&gt;Joint Test and Type 3 tests&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want the Type 3 tests in descending order, you output them to a data set and then sort the data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Dec 2024 22:16:05 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2024-12-13T22:16:05Z</dc:date>
    <item>
      <title>Run Logistic regression- wald statsitics for type3 analysis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Logistic-regression-wald-statsitics-for-type3-analysis/m-p/953554#M372508</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I run logitic regression.(Credit score model)&lt;/P&gt;
&lt;P&gt;I want to&amp;nbsp;&lt;SPAN&gt;display in the ODS destinations only one table called&amp;nbsp; -wald statsitics for type3 analysis.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The code I run first was&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc genmod data=panel namelen=60 descending ;
ods output parameterestimates=want;
class  X W Z R;
model TARGET=X W Z R/ dist=binomial link=logit  type3 wald ;
output out=want
p=P_BAD xbeta=logit;
ODS SELECT Type3;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But I had a warning and I changed it to (Instead&amp;nbsp;&lt;CODE class=" language-sas"&gt;ODS SELECT Type3 I&amp;nbsp;wrote&amp;nbsp;&amp;nbsp;ODS SELECT ModelANova)&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc genmod data=panel namelen=60 descending ;
ods output parameterestimates=want;
class  X W Z R;
model TARGET=X W Z R/ dist=binomial link=logit  type3 wald ;
output out=want
p=P_BAD xbeta=logit;
ODS SELECT ModelANOVA;  
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note-&lt;/P&gt;
&lt;P&gt;The warning was -&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;WARNING: The Genmod output formerly named Type3 is now named ModelANOVA. Please use the new output name in the future; the old 
         syntax might not work in the next release.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;My question-&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;How can I see the printed table wald statsitics for type3 with ordered rows by Chi-Square descending order?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;What does the name type3 mean? is it a word in statistics type3 or it is the defintion in SAS only?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 21:53:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Logistic-regression-wald-statsitics-for-type3-analysis/m-p/953554#M372508</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2024-12-13T21:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Run Logistic regression- wald statsitics for type3 analysis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Logistic-regression-wald-statsitics-for-type3-analysis/m-p/953557#M372511</link>
      <description>&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_logistic_details51.htm" target="_self"&gt;Joint Test and Type 3 tests&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want the Type 3 tests in descending order, you output them to a data set and then sort the data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 22:16:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Logistic-regression-wald-statsitics-for-type3-analysis/m-p/953557#M372511</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-12-13T22:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Run Logistic regression- wald statsitics for type3 analysis</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Logistic-regression-wald-statsitics-for-type3-analysis/m-p/953573#M372523</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;How can I see the printed table wald statsitics for type3 with ordered rows by Chi-Square descending order?"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Save it and order it .&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc genmod data=sashelp.heart(obs=1000) namelen=60 descending ;
ods output ModelANOVA=ModelANOVA;
class  sex;
model status=sex height weight/ dist=binomial link=logit  type3 wald ;
output out=want
p=P_BAD xbeta=logit;
run;
proc sort data=ModelANOVA;
by descending ChiSq;
run;
proc print;run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1734158756715.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/103014i0E310228376116CB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1734158756715.png" alt="Ksharp_0-1734158756715.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;What does the name type3 mean? is it a word in statistics type3 or it is the defintion in SAS only?"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It is a word in statistics theory. it is square sum of each independent varible for the model, there are four type SS in statistic theory (TYPEI TYPEII TYPEIII TYPEIV).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It is used to judge&amp;nbsp; the independent variable is signifant or not(a.k.a the importance of independent variables for model).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Dec 2024 06:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Logistic-regression-wald-statsitics-for-type3-analysis/m-p/953573#M372523</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-12-14T06:51:31Z</dc:date>
    </item>
  </channel>
</rss>

