<?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: Multiple imputation using chained equations in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393993#M20570</link>
    <description>&lt;P&gt;That first ERROR usually has something to do with changes made to the output template. &amp;nbsp;I would contact technical support to ask about the second.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the mean time you might also try simplifying your PHREG code so that only what you need for MIANALYZE will be produced.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;Proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;phreg&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;pop1_imput1&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="token procnames"&gt;format&lt;/SPAN&gt; slevel slevel&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="token statement"&gt;class&lt;/SPAN&gt; slevel &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;param&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;ref ref&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'Primary'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="token procnames"&gt;model&lt;/SPAN&gt; delriskc1&lt;SPAN class="token operator"&gt;*&lt;/SPAN&gt;riskc1&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;slevel&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;eventcode&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token statement"&gt;by&lt;/SPAN&gt; _Imputation_&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;ods&lt;/SPAN&gt; output parameterEstimates  &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; a_mvn&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;mianalyze&lt;/SPAN&gt; parms&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;classvar&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;full&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;a_mvn&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token statement"&gt;class&lt;/SPAN&gt; slevel&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
modeleffects slevel&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;RUN&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;BR /&gt;run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 07 Sep 2017 18:52:10 GMT</pubDate>
    <dc:creator>SAS_Rob</dc:creator>
    <dc:date>2017-09-07T18:52:10Z</dc:date>
    <item>
      <title>Multiple imputation using chained equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393291#M20528</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm a beginner on SAS. I need to use multiple imputation using chained equations (FCS) to deal with missing values.&lt;/P&gt;&lt;P&gt;I want to use fitted linear regression models for a continuous variable X (fourth root) and fitted multinomial regression for nominal variable Y (4 categories) to create 10 imputed datasets; analyses are run separately and their results would be combined by use of Rubin's method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone help me for syntax?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2017 16:22:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393291#M20528</guid>
      <dc:creator>Alib</dc:creator>
      <dc:date>2017-09-05T16:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple imputation using chained equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393340#M20535</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The approach from a syntax standpoint would be similar to this example&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mi_examples07.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mi_examples07.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only difference in your case would be that rather than using the DISCRIM method, you would use the LOGISTIC method.&lt;/P&gt;
&lt;P&gt;fcs logistic (species/link=glogit);&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>Tue, 05 Sep 2017 18:44:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393340#M20535</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2017-09-05T18:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple imputation using chained equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393622#M20552</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;I use this syntax&lt;/P&gt;&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;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It worked. Can I use proc mianalyze to combine results from the 10 imputations? If not, what can i use to combine their results?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2017 16:23:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393622#M20552</guid>
      <dc:creator>Alib</dc:creator>
      <dc:date>2017-09-06T16:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple imputation using chained equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393624#M20553</link>
      <description>&lt;P&gt;The way it actually works is that you next run whatever analysis you were planning to run (regression for example) and then use MIANALYZE to combine the estimates from that analysis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a good description of the three step process here in the documentation.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mianalyze_overview.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mianalyze_overview.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2017 16:26:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393624#M20553</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2017-09-06T16:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple imputation using chained equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393849#M20559</link>
      <description>&lt;P&gt;I perform univariate competing risk with this syntax but i have many errors from sas&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data slevel;
	slevel=1;output;
	slevel=2;output;
	slevel=3;output;
	slevel=4;output;
	format slevel slevel.;
	run;

Proc phreg data=pop1_imput1 plots (overlay=stratum)=cif;
	format slevel slevel.;
	class slevel (param=ref ref='Primary');
	model delriskc1*riskc1(0)=slevel/eventcode=1 risklimits;
	baseline covariates=slevel out=outslevel cif=_all_;
by _Imputation_; 
ods output parameterEstimates  = a_mvn CovB=mxcovb;
	run;

proc mianalyze parms(classvar=full)=a_mvn COVB(effectvar=rowcol)=mxcovb;
class slevel;
modeleffects slevel;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;ERROR: Event Stack Underflow. This is probably caused by mis-matched begin and end event calls&lt;/P&gt;&lt;P&gt;ERROR:&amp;nbsp; An exception has been encountered.&lt;BR /&gt;Please contact technical support and provide them with the following traceback information:&lt;BR /&gt;&lt;BR /&gt;The SAS task name is [PHREG]&lt;BR /&gt;ERROR:&amp;nbsp; Read Access Violation PHREG&lt;BR /&gt;Exception occurred at (06497DDF)&lt;BR /&gt;Task Traceback&lt;BR /&gt;Address&amp;nbsp;&amp;nbsp; Frame&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (DBGHELP API Version 4.0 rev 5)&lt;BR /&gt;0000000006497DDF&amp;nbsp; 000000007FC24270&amp;nbsp; sasods:tkvercn1+0x126D9F&lt;BR /&gt;000000000CA383B9&amp;nbsp; 000000007FC24278&amp;nbsp; sasstgr:tkvercn1+0x57379&lt;BR /&gt;000000000CA6465A&amp;nbsp; 000000007FC24BC0&amp;nbsp; sasstgr:tkvercn1+0x8361A&lt;BR /&gt;000000000CA54506&amp;nbsp; 000000007FC24E80&amp;nbsp; sasstgr:tkvercn1+0x734C6&lt;BR /&gt;000000000739677A&amp;nbsp; 000000007FC24E88&amp;nbsp; sasoda:tkvercn1+0x2573A&lt;BR /&gt;000000000738FA18&amp;nbsp; 000000007FC24FC0&amp;nbsp; sasoda:tkvercn1+0x1E9D8&lt;BR /&gt;000000000739677A&amp;nbsp; 000000007FC25000&amp;nbsp; sasoda:tkvercn1+0x2573A&lt;BR /&gt;00000000073724F8&amp;nbsp; 000000007FC25610&amp;nbsp; sasoda:tkvercn1+0x14B8&lt;BR /&gt;000000000F4C6CFA&amp;nbsp; 000000007FC25618&amp;nbsp; sasmrk:tkvercn1+0x105CBA&lt;BR /&gt;000000000F453FD1&amp;nbsp; 000000007FC25B90&amp;nbsp; sasmrk:tkvercn1+0x92F91&lt;BR /&gt;000000000F388A6A&amp;nbsp; 000000007FC25B98&amp;nbsp; sastags:tkvercn1+0x47A2A&lt;BR /&gt;000000000F36C343&amp;nbsp; 000000007FC26180&amp;nbsp; sastags:tkvercn1+0x2B303&lt;BR /&gt;000000000E9CDC6A&amp;nbsp; 000000007FC26188&amp;nbsp; sasxml:tkvercn1+0x4CC2A&lt;BR /&gt;000000000E982548&amp;nbsp; 000000007FC26260&amp;nbsp; sasxml:tkvercn1+0x1508&lt;BR /&gt;000000000653F63A&amp;nbsp; 000000007FC262A0&amp;nbsp; sasods:tkvercn1+0x1CE5FA&lt;BR /&gt;0000000006433576&amp;nbsp; 000000007FC265C0&amp;nbsp; sasods:tkvercn1+0xC2536&lt;BR /&gt;00000000063CEECA&amp;nbsp; 000000007FC26CA0&amp;nbsp; sasods:tkvercn1+0x5DE8A&lt;BR /&gt;000000000653F63A&amp;nbsp; 000000007FC26CE0&amp;nbsp; sasods:tkvercn1+0x1CE5FA&lt;BR /&gt;00000000063E4690&amp;nbsp; 000000007FC2AC70&amp;nbsp; sasods:tkvercn1+0x73650&lt;BR /&gt;000000000653F63A&amp;nbsp; 000000007FC2ACB0&amp;nbsp; sasods:tkvercn1+0x1CE5FA&lt;BR /&gt;00000000063D4C99&amp;nbsp; 000000007FC2CF40&amp;nbsp; sasods:tkvercn1+0x63C59&lt;BR /&gt;000000000F156FBA&amp;nbsp; 000000007FC2CF48&amp;nbsp; sasphreg:tkvercn1+0x295F7A&lt;BR /&gt;000000000F0B0AD1&amp;nbsp; 000000007FC2D600&amp;nbsp; sasphreg:tkvercn1+0x1EFA91&lt;BR /&gt;000000000F0AE1C8&amp;nbsp; 000000007FC2E080&amp;nbsp; sasphreg:tkvercn1+0x1ED188&lt;BR /&gt;000000000EEC15F8&amp;nbsp; 000000007FC2FBF0&amp;nbsp; sasphreg:tkvercn1+0x5B8&lt;BR /&gt;00000000031A8A2B&amp;nbsp; 000000007FC2FBF8&amp;nbsp; sashost:Main+0x10F0B&lt;BR /&gt;00000000031AE66D&amp;nbsp; 000000007FC2FF50&amp;nbsp; sashost:Main+0x16B4D&lt;BR /&gt;00007FFC4BC42774&amp;nbsp; 000000007FC2FF58&amp;nbsp; KERNEL32:BaseThreadInitThunk+0x14&lt;BR /&gt;00007FFC4DE30D51&amp;nbsp; 000000007FC2FF88&amp;nbsp; ntdll:RtlUserThreadStart+0x21&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ERROR:&amp;nbsp; An exception has been encountered.&lt;BR /&gt;Please contact technical support and provide them with the following traceback information:&lt;BR /&gt;&lt;BR /&gt;The SAS task name is [PHREG]&lt;BR /&gt;ERROR:&amp;nbsp; Read Access Violation PHREG&lt;BR /&gt;Exception occurred at (0CA645F9)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: File WORK.MXCOVB.DATA does not exist.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2017 12:43:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393849#M20559</guid>
      <dc:creator>Alib</dc:creator>
      <dc:date>2017-09-07T12:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple imputation using chained equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393993#M20570</link>
      <description>&lt;P&gt;That first ERROR usually has something to do with changes made to the output template. &amp;nbsp;I would contact technical support to ask about the second.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the mean time you might also try simplifying your PHREG code so that only what you need for MIANALYZE will be produced.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;Proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;phreg&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;pop1_imput1&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="token procnames"&gt;format&lt;/SPAN&gt; slevel slevel&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="token statement"&gt;class&lt;/SPAN&gt; slevel &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;param&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;ref ref&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'Primary'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="token procnames"&gt;model&lt;/SPAN&gt; delriskc1&lt;SPAN class="token operator"&gt;*&lt;/SPAN&gt;riskc1&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;slevel&lt;SPAN class="token operator"&gt;/&lt;/SPAN&gt;eventcode&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token statement"&gt;by&lt;/SPAN&gt; _Imputation_&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;ods&lt;/SPAN&gt; output parameterEstimates  &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; a_mvn&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
	&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;

&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;mianalyze&lt;/SPAN&gt; parms&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;classvar&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;full&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;a_mvn&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token statement"&gt;class&lt;/SPAN&gt; slevel&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
modeleffects slevel&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;RUN&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;BR /&gt;run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Sep 2017 18:52:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/393993#M20570</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2017-09-07T18:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple imputation using chained equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/394580#M20607</link>
      <description>&lt;P&gt;Thanks Rob,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After use of proc mianalyze statement,i used this syntax&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;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;and I've had p-value and hazards ratio by class but i need p-value for all categories (global p-value of slevel), how i can get it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2017 09:20:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multiple-imputation-using-chained-equations/m-p/394580#M20607</guid>
      <dc:creator>Alib</dc:creator>
      <dc:date>2017-09-13T09:20:37Z</dc:date>
    </item>
  </channel>
</rss>

