<?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: Global p-value of categorial variable after multiple imptutation??? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Global-p-value-of-categorial-variable-after-multiple-imptutation/m-p/395485#M20648</link>
    <description>&lt;P&gt;In this case it is recommended that you combine the actual Chi-Square statistics from the Type3 tests in PHREG. This cannot be done with Proc MIANALYZE, but there is a MACRO on Dr. Paul Allison's web site called %COMBCHI that can do this directly.&lt;BR /&gt;&lt;A href="http://www.ssc.upenn.edu/~allison/#Macros" target="_blank"&gt;http://www.ssc.upenn.edu/~allison/#Macros&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Sep 2017 12:11:21 GMT</pubDate>
    <dc:creator>SAS_Rob</dc:creator>
    <dc:date>2017-09-13T12:11:21Z</dc:date>
    <item>
      <title>Global p-value of categorial variable after multiple imptutation???</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Global-p-value-of-categorial-variable-after-multiple-imptutation/m-p/395435#M20646</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mi data=table1 seed=1305417 nimpute=10 out=imputedtable1;
   class slevel sex period city death;
   fcs logistic(slevel/link=glogit) logistic(period/link=glogit) reg(rate/details);
   var slevel sex period city death rate time_log ;
run;


Proc phreg data=pop1_imput1;
	format slevel slevel.;
	class slevel (param=ref ref='Primary');
	model delriskc1*riskc1(0)=slevel/eventcode=1;
by _Imputation_; 
ods output parameterEstimates  = a_mvn;
	run;

proc mianalyze parms(classvar=classval)=a_mvn;
class slevel;
modeleffects slevel;
RUN;
run;

data u_slevel2; set u_slevel1;
HR_est=EXP(ESTIMATE);
LCI_HR=HR_est*EXP(-1.96*STDERR);
UCI_HR=HR_est*EXP(+1.96*STDERR);
RUN;

proc print data=u_slevel2;
var Parm slevel Probt HR_est LCI_HR UCI_HR;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;After used the syntax above, I've had p-value and hazards ratio by categories of slevel but i need a global p-value of slevel (p-value for all categories), how i can get it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2017 09:19:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Global-p-value-of-categorial-variable-after-multiple-imptutation/m-p/395435#M20646</guid>
      <dc:creator>Alib</dc:creator>
      <dc:date>2017-09-13T09:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Global p-value of categorial variable after multiple imptutation???</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Global-p-value-of-categorial-variable-after-multiple-imptutation/m-p/395485#M20648</link>
      <description>&lt;P&gt;In this case it is recommended that you combine the actual Chi-Square statistics from the Type3 tests in PHREG. This cannot be done with Proc MIANALYZE, but there is a MACRO on Dr. Paul Allison's web site called %COMBCHI that can do this directly.&lt;BR /&gt;&lt;A href="http://www.ssc.upenn.edu/~allison/#Macros" target="_blank"&gt;http://www.ssc.upenn.edu/~allison/#Macros&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2017 12:11:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Global-p-value-of-categorial-variable-after-multiple-imptutation/m-p/395485#M20648</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2017-09-13T12:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Global p-value of categorial variable after multiple imptutation???</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Global-p-value-of-categorial-variable-after-multiple-imptutation/m-p/395649#M20650</link>
      <description>&lt;P&gt;Many Thanks Rob&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2017 17:06:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Global-p-value-of-categorial-variable-after-multiple-imptutation/m-p/395649#M20650</guid>
      <dc:creator>Alib</dc:creator>
      <dc:date>2017-09-13T17:06:47Z</dc:date>
    </item>
  </channel>
</rss>

