<?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 I get pooled Dunnett adjusted confidence intervals calculated from multiple imputed datasets? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-I-get-pooled-Dunnett-adjusted-confidence-intervals/m-p/704668#M34095</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I hope to get pooled Dunnett adjusted confidence intervals from multiple imputed datasets. I first create 100 imputed datasets using PROC MI. Then I get the Dunnett adjusted CIs for treatment effect difference of A vs. C and B vs. C using Estimate statement with adjust=dunnett option in PROC MIXED. But it seems it’s not feasible to use PROC MIANALYZE to poll the Dunnett adjusted upper/lower limits or request an Dunnett adjustment to the CIs from&amp;nbsp;PROC MIANALYZE？Can anyone give me some advice? Many thanks！&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my SAS code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC MI data=toimp out=anami seed=124695 nimpute=100;&lt;BR /&gt;by TRT ;&lt;BR /&gt;var BASE w3 w5 w7 w9 w13 w17;&lt;BR /&gt;EM maxiter=1000;&lt;BR /&gt;mcmc chain=multiple impute=full;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC MIXED data=anami;&lt;BR /&gt;class TRT;&lt;BR /&gt;model week17 = TRT BASE / solution;&lt;BR /&gt;lsmeans TRT/ADJUST=DUNNETT cl pdiff=control("C");&lt;BR /&gt;ods output Diffs=lsdiffs LSMeans=lsm solutionF=Parms;&lt;BR /&gt;by _Imputation_;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC MIANALYZE parms(classvar=full)=lsdiffs;&lt;BR /&gt;class TRT;&lt;BR /&gt;modeleffects TRT;&lt;BR /&gt;ods output ParameterEstimates=MIAN_lsdiffs;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Dec 2020 09:44:06 GMT</pubDate>
    <dc:creator>Wenqing_Jiang</dc:creator>
    <dc:date>2020-12-09T09:44:06Z</dc:date>
    <item>
      <title>How I get pooled Dunnett adjusted confidence intervals calculated from multiple imputed datasets?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-I-get-pooled-Dunnett-adjusted-confidence-intervals/m-p/704668#M34095</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I hope to get pooled Dunnett adjusted confidence intervals from multiple imputed datasets. I first create 100 imputed datasets using PROC MI. Then I get the Dunnett adjusted CIs for treatment effect difference of A vs. C and B vs. C using Estimate statement with adjust=dunnett option in PROC MIXED. But it seems it’s not feasible to use PROC MIANALYZE to poll the Dunnett adjusted upper/lower limits or request an Dunnett adjustment to the CIs from&amp;nbsp;PROC MIANALYZE？Can anyone give me some advice? Many thanks！&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my SAS code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC MI data=toimp out=anami seed=124695 nimpute=100;&lt;BR /&gt;by TRT ;&lt;BR /&gt;var BASE w3 w5 w7 w9 w13 w17;&lt;BR /&gt;EM maxiter=1000;&lt;BR /&gt;mcmc chain=multiple impute=full;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC MIXED data=anami;&lt;BR /&gt;class TRT;&lt;BR /&gt;model week17 = TRT BASE / solution;&lt;BR /&gt;lsmeans TRT/ADJUST=DUNNETT cl pdiff=control("C");&lt;BR /&gt;ods output Diffs=lsdiffs LSMeans=lsm solutionF=Parms;&lt;BR /&gt;by _Imputation_;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PROC MIANALYZE parms(classvar=full)=lsdiffs;&lt;BR /&gt;class TRT;&lt;BR /&gt;modeleffects TRT;&lt;BR /&gt;ods output ParameterEstimates=MIAN_lsdiffs;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 09:44:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-I-get-pooled-Dunnett-adjusted-confidence-intervals/m-p/704668#M34095</guid>
      <dc:creator>Wenqing_Jiang</dc:creator>
      <dc:date>2020-12-09T09:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: How I get pooled Dunnett adjusted confidence intervals calculated from multiple imputed datasets</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-I-get-pooled-Dunnett-adjusted-confidence-intervals/m-p/704735#M34101</link>
      <description>&lt;P&gt;Hard way, but more likely to be correct, is to get the pooled differences and standard errors of the differences from MIANALYZE, and then do the calculation of the pooled confidence interval in a DATA step.&amp;nbsp; You know the number of comparisons, so you know the critical Dunnett value to use in constructing the CI.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't trust any of the "easier" ways I was thinking of...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 14:33:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-I-get-pooled-Dunnett-adjusted-confidence-intervals/m-p/704735#M34101</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-12-09T14:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: How I get pooled Dunnett adjusted confidence intervals calculated from multiple imputed datasets</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-I-get-pooled-Dunnett-adjusted-confidence-intervals/m-p/707359#M34266</link>
      <description>Thank you Steve. I tried to do some literature search but it was scoreless. It is a hard way and calls for more theoretical work in the future.</description>
      <pubDate>Mon, 21 Dec 2020 03:09:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-I-get-pooled-Dunnett-adjusted-confidence-intervals/m-p/707359#M34266</guid>
      <dc:creator>Wenqing_Jiang</dc:creator>
      <dc:date>2020-12-21T03:09:35Z</dc:date>
    </item>
  </channel>
</rss>

