<?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 How to obtain odds ratios from PROC MIANALYZE logistic regression in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-obtain-odds-ratios-from-PROC-MIANALYZE-logistic/m-p/247489#M56307</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know if there is a way to get odds ratios (and 95% confidence intervals) for a multiple logistic regression model where data was imputed with proc mi (fcs logistic regression method) and combined with proc mianalyze?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the code I used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC MIANALYZE PARMS(CLASSVAR=CLASSVAL)=temp.parmsout&amp;nbsp;covb(effectvar=stacking)=temp.covbout;&lt;BR /&gt;CLASS homeowner carowner Ethnicity;&lt;BR /&gt;MODELEFFECTS age_reg&amp;nbsp;homeowner&amp;nbsp;carowner&amp;nbsp;Ethnicity;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This gives me the pooled parameter estimates from my 10 imputations and the variance information, but wondering if I can get pooled odds ratios? Or can I transform the estimates into odds ratios?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 02 Feb 2016 15:20:45 GMT</pubDate>
    <dc:creator>DW</dc:creator>
    <dc:date>2016-02-02T15:20:45Z</dc:date>
    <item>
      <title>How to obtain odds ratios from PROC MIANALYZE logistic regression</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-obtain-odds-ratios-from-PROC-MIANALYZE-logistic/m-p/247489#M56307</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know if there is a way to get odds ratios (and 95% confidence intervals) for a multiple logistic regression model where data was imputed with proc mi (fcs logistic regression method) and combined with proc mianalyze?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the code I used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC MIANALYZE PARMS(CLASSVAR=CLASSVAL)=temp.parmsout&amp;nbsp;covb(effectvar=stacking)=temp.covbout;&lt;BR /&gt;CLASS homeowner carowner Ethnicity;&lt;BR /&gt;MODELEFFECTS age_reg&amp;nbsp;homeowner&amp;nbsp;carowner&amp;nbsp;Ethnicity;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This gives me the pooled parameter estimates from my 10 imputations and the variance information, but wondering if I can get pooled odds ratios? Or can I transform the estimates into odds ratios?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 15:20:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-obtain-odds-ratios-from-PROC-MIANALYZE-logistic/m-p/247489#M56307</guid>
      <dc:creator>DW</dc:creator>
      <dc:date>2016-02-02T15:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain odds ratios from PROC MIANALYZE logistic regression</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-obtain-odds-ratios-from-PROC-MIANALYZE-logistic/m-p/248349#M56405</link>
      <description>&lt;P&gt;Alright, I just posted my own question - so I will pay it forward by tryig to tackle this one.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc surveylogistic data=mydata varmethod=jk;
	by _imputation_;
	class X1 (ref='0') /param=ref;;
	model Y (event='1') = X1;
	ods output parameterestimates=ORs;
run;
proc mianalyze parms(classvar=classval)=ORs;
	class X1;
	modeleffects intercept X1;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps, I just grabbed this old piece of code from when I ran a comparable question.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2016 17:33:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-obtain-odds-ratios-from-PROC-MIANALYZE-logistic/m-p/248349#M56405</guid>
      <dc:creator>H</dc:creator>
      <dc:date>2016-02-05T17:33:45Z</dc:date>
    </item>
  </channel>
</rss>

