<?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 individual parameter estimates in proc mi analyze in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/individual-parameter-estimates-in-proc-mi-analyze/m-p/735591#M35726</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp; I have run 10 imputed datasets and&amp;nbsp; now would like to run proc mi analyze to combine my results for my analysis. I have a ordinal, categorical outcome variable so i will be using a proc logistic with a link=glogit function. So far I have done the code below and the test works but it only gives me the pooled estimates and not the estimates for each category in my outcome variable. I would like to know how to get each estimate for the 5 categories present in my outcome variable.&lt;/P&gt;&lt;P&gt;thank you for your help and please find the code below:&lt;/P&gt;&lt;P&gt;proc logistic data=impute_F;&lt;BR /&gt;class traj_tabac(ref = "1") p91_cbcl_int_c(ref="0")/param=ref;&lt;BR /&gt;model traj_tabac (event = "1") =p91_cbcl_int_c /link=glogit;&lt;BR /&gt;ODS OUTPUT parameterestimates=tbint91;&lt;BR /&gt;BY _Imputation_;&lt;BR /&gt;RUN;&lt;BR /&gt;PROC MIANALYZE parms(classvar=classval)=tbint91;&lt;BR /&gt;CLASS p91_cbcl_int_c;&lt;BR /&gt;MODELEFFECTS p91_cbcl_int_c;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Apr 2021 14:48:44 GMT</pubDate>
    <dc:creator>Thibaut1</dc:creator>
    <dc:date>2021-04-20T14:48:44Z</dc:date>
    <item>
      <title>individual parameter estimates in proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/individual-parameter-estimates-in-proc-mi-analyze/m-p/735591#M35726</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp; I have run 10 imputed datasets and&amp;nbsp; now would like to run proc mi analyze to combine my results for my analysis. I have a ordinal, categorical outcome variable so i will be using a proc logistic with a link=glogit function. So far I have done the code below and the test works but it only gives me the pooled estimates and not the estimates for each category in my outcome variable. I would like to know how to get each estimate for the 5 categories present in my outcome variable.&lt;/P&gt;&lt;P&gt;thank you for your help and please find the code below:&lt;/P&gt;&lt;P&gt;proc logistic data=impute_F;&lt;BR /&gt;class traj_tabac(ref = "1") p91_cbcl_int_c(ref="0")/param=ref;&lt;BR /&gt;model traj_tabac (event = "1") =p91_cbcl_int_c /link=glogit;&lt;BR /&gt;ODS OUTPUT parameterestimates=tbint91;&lt;BR /&gt;BY _Imputation_;&lt;BR /&gt;RUN;&lt;BR /&gt;PROC MIANALYZE parms(classvar=classval)=tbint91;&lt;BR /&gt;CLASS p91_cbcl_int_c;&lt;BR /&gt;MODELEFFECTS p91_cbcl_int_c;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 14:48:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/individual-parameter-estimates-in-proc-mi-analyze/m-p/735591#M35726</guid>
      <dc:creator>Thibaut1</dc:creator>
      <dc:date>2021-04-20T14:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: individual parameter estimates in proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/individual-parameter-estimates-in-proc-mi-analyze/m-p/735844#M35727</link>
      <description>&lt;P&gt;Moved to &lt;EM&gt;statistics&lt;/EM&gt; community hoping you'll get an answer there.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 07:45:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/individual-parameter-estimates-in-proc-mi-analyze/m-p/735844#M35727</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-04-21T07:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: individual parameter estimates in proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/individual-parameter-estimates-in-proc-mi-analyze/m-p/735916#M35731</link>
      <description>&lt;P&gt;Just to clarify, typically the Generalized Logit link (LINK=GLOGIT) is used for a nominal response variable and the cumulative link function with the proportional odds assumption is used for an ordinal response.&lt;/P&gt;
&lt;P&gt;That being said, I have included an example using both link functions below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/*Sample data set that assumes the imputation has already been done*/&lt;BR /&gt;data test;&lt;BR /&gt;seed=2534565;&lt;BR /&gt;do _imputation_=1 to 25;&lt;BR /&gt;do a=1 to 3;&lt;BR /&gt;do i=1 to 250;&lt;BR /&gt;ind1=ranuni(seed);&lt;BR /&gt;logit=-1 + .05*ind1-.67*a;&lt;BR /&gt;p=exp(-logit)/(1+exp(-logit));&lt;BR /&gt;if ranuni(seed)&amp;gt;p then y=1;&lt;BR /&gt;else if ranuni(314)&amp;gt;.5 then y=2;&lt;BR /&gt;else y=3;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;/*Generalized Logit Model*/&lt;BR /&gt;proc logistic data=test;&lt;BR /&gt;by _imputation_;&lt;BR /&gt;class a/param=ref;&lt;BR /&gt;model y=ind1 a/link=glogit;&lt;BR /&gt;ods output parameterestimates=parmsds;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc mianalyze parms(classvar=classval link=glogit)=parmsds;&lt;BR /&gt;class a;&lt;BR /&gt;modeleffects Intercept ind1 a;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;/*Default Proportional Odds Model*/&lt;BR /&gt;proc logistic data=test;&lt;BR /&gt;by _imputation_;&lt;BR /&gt;class a/param=ref;&lt;BR /&gt;model y=ind1 a;&lt;BR /&gt;ods output parameterestimates=parmsds;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc mianalyze parms(classvar=classval link=logit)=parmsds;&lt;BR /&gt;class a;&lt;BR /&gt;modeleffects Intercept ind1 a;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 11:39:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/individual-parameter-estimates-in-proc-mi-analyze/m-p/735916#M35731</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2021-04-21T11:39:35Z</dc:date>
    </item>
  </channel>
</rss>

