<?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: Pooling results after multiple imputations: For the proportional odds assumption tests in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471242#M24544</link>
    <description>&lt;P&gt;it's not a good way to determine whether you believe proportional odds is a reasonable assumption in this case. That's quite a separate matter from the analysis and estimation&lt;/P&gt;</description>
    <pubDate>Mon, 18 Jun 2018 21:52:35 GMT</pubDate>
    <dc:creator>pau13rown</dc:creator>
    <dc:date>2018-06-18T21:52:35Z</dc:date>
    <item>
      <title>Pooling results after multiple imputations: For the proportional odds assumption tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471240#M24543</link>
      <description>&lt;P&gt;Hello, all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used PROC LOGISTICS to run ordinal logistic models on 5 multiply imputed data (My outcome is ordinal with 3 categories).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also included "the unequalslopes" function in order to&amp;nbsp;check the proportional odds assumption. I was able to get pooled results on the 5 ordinal logit analyses but &lt;U&gt;not&lt;/U&gt; on the 5 assumption test results. Is there a way to obtain pooled results on the proportional assumption tests (indicated in SAS output as "Linear Hypothesis Test Results").&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would greatly appreciate your help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=name; 
	by _imputation_; 
	model DV (order=data) = 	var1 	var2 	/  unequalslopes MAXITER =1000 ;
	var1:       test    var1_4 =	var1_3; 
	var2:       test    var2_4 =	var2_3; 
run;

data perm.name2print; set perm.nameprint; parameter = compress (parameter); run; 

proc mianalyze parms (classvar=classval)= perm.name2print;
 modeleffects intercept var1   var2 ;
 ods output parameterestimates = mianalyze_parms; 
run;

data OR;  
 set mianalyze_parms;
 OR=exp(estimate);
 LCL_OR=exp(LCLMean);
 UCL_OR=exp(UCLMean);

proc print; var parm OR LCL_OR UCL_OR;
run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Jun 2018 21:37:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471240#M24543</guid>
      <dc:creator>ejay0503</dc:creator>
      <dc:date>2018-06-18T21:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling results after multiple imputations: For the proportional odds assumption tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471242#M24544</link>
      <description>&lt;P&gt;it's not a good way to determine whether you believe proportional odds is a reasonable assumption in this case. That's quite a separate matter from the analysis and estimation&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 21:52:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471242#M24544</guid>
      <dc:creator>pau13rown</dc:creator>
      <dc:date>2018-06-18T21:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling results after multiple imputations: For the proportional odds assumption tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471245#M24545</link>
      <description>&lt;P&gt;Thanks for the reply, Paul. Then what would you suggest to make sure the data meet the proportional odds assumption?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 21:54:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471245#M24545</guid>
      <dc:creator>ejay0503</dc:creator>
      <dc:date>2018-06-18T21:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling results after multiple imputations: For the proportional odds assumption tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471252#M24546</link>
      <description>&lt;P&gt;it's more a matter of whether your audience will believe it and biological reasons or a priori reasons are more cogent than p-values, especially when simultaneously confessing missing data. A visual assessment is much more persuasive i think: &lt;A href="http://support.sas.com/kb/37/944.html" target="_blank"&gt;http://support.sas.com/kb/37/944.html&lt;/A&gt;. Otherwise i think the stokes book (&lt;A href="https://www.amazon.com/Categorical-Data-Analysis-Using-System/dp/0471224243" target="_blank"&gt;https://www.amazon.com/Categorical-Data-Analysis-Using-System/dp/0471224243&lt;/A&gt;) describes how to restructure your dataset to fit a partial proportional odds model&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 22:30:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471252#M24546</guid>
      <dc:creator>pau13rown</dc:creator>
      <dc:date>2018-06-18T22:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling results after multiple imputations: For the proportional odds assumption tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471269#M24547</link>
      <description>&lt;P&gt;Thank you for the helpful links. I personally agree that a&amp;nbsp;&lt;SPAN&gt;visual assessment is much more persuasive, but a proportional odds test is more popularly used in my field, because I think it provides more objective results. I very appreciate your prompt replies, but perhaps I should stick to the assumption tests though.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;All the best,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 23:58:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471269#M24547</guid>
      <dc:creator>ejay0503</dc:creator>
      <dc:date>2018-06-18T23:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling results after multiple imputations: For the proportional odds assumption tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471270#M24548</link>
      <description>&lt;P&gt;a final note regarding the significance test: i assume the null hypothesis is "Ho: everything is fine" ie "the proportional odds assumption is reasonable", thus the test is anti-conservative - all you need is a lot of missing data and you'll show every time that the proportional odds assumption cannot be rejected (using a significance test). Better to change your colleagues' default thinking on the matter&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jun 2018 00:14:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-results-after-multiple-imputations-For-the-proportional/m-p/471270#M24548</guid>
      <dc:creator>pau13rown</dc:creator>
      <dc:date>2018-06-19T00:14:55Z</dc:date>
    </item>
  </channel>
</rss>

