<?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: Pooled descriptive statistics after multiple imputation in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737248#M35809</link>
    <description>&lt;P&gt;PROC MIANALYZE.&amp;nbsp; After doing the by imputation runs, you need to consolidate the results. The first example in the MIANALYZE documentation should provide what you need for the output from PROC MEANS.&amp;nbsp; Unfortunately, PROC FREQ does not provide a standard error for the analysis, so you will need to switch to PROC SURVEYFREQ.&amp;nbsp; See this post from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/155173"&gt;@SAS_Rob&lt;/a&gt;&amp;nbsp;for details:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/proc-freq-with-multiple-imputation/td-p/671680" target="_self"&gt;https://communities.sas.com/t5/Statistical-Procedures/proc-freq-with-multiple-imputation/td-p/671680&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
    <pubDate>Tue, 27 Apr 2021 12:48:23 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2021-04-27T12:48:23Z</dc:date>
    <item>
      <title>Pooled descriptive statistics after multiple imputation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737093#M35797</link>
      <description>&lt;P&gt;Please, I need help with SAS code for pooled descriptive statistics after Multiple imputation.&amp;nbsp; I need to calculate the pooled proportions, median with the interquartile range and risk difference. Below is my SAS code, thank you :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=Avera_matched_data_all n nmiss q1 q3 median;
class telemed_use;
var age;
by _Imputation_;
run;


proc freq data=Avera_matched_data_all;
table  new_dialysis*telemed_use sex2*telemed_use age2*telemed_use/norow nocol chisq riskdiff;
by by _Imputation_;run;&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Apr 2021 19:38:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737093#M35797</guid>
      <dc:creator>UcheOkoro</dc:creator>
      <dc:date>2021-04-26T19:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Pooled descriptive statistics after multiple imputation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737248#M35809</link>
      <description>&lt;P&gt;PROC MIANALYZE.&amp;nbsp; After doing the by imputation runs, you need to consolidate the results. The first example in the MIANALYZE documentation should provide what you need for the output from PROC MEANS.&amp;nbsp; Unfortunately, PROC FREQ does not provide a standard error for the analysis, so you will need to switch to PROC SURVEYFREQ.&amp;nbsp; See this post from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/155173"&gt;@SAS_Rob&lt;/a&gt;&amp;nbsp;for details:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/proc-freq-with-multiple-imputation/td-p/671680" target="_self"&gt;https://communities.sas.com/t5/Statistical-Procedures/proc-freq-with-multiple-imputation/td-p/671680&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 12:48:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737248#M35809</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2021-04-27T12:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Pooled descriptive statistics after multiple imputation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737295#M35810</link>
      <description>&lt;P&gt;Thank you so much! It worked.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 15:23:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737295#M35810</guid>
      <dc:creator>UcheOkoro</dc:creator>
      <dc:date>2021-04-27T15:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Pooled descriptive statistics after multiple imputation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737313#M35811</link>
      <description>&lt;P&gt;Please, I have another related question. I am using the proc surveymeans and I would like to include&amp;nbsp; a within stratum median analysis statement&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc surveymeans data=Avera_matched_data_all q1 q3 median;
stratum telemed_use/list;
var age ;
by _imputation_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="UcheOkoro_0-1619540678326.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58728i1FF82AC21D8D974A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="UcheOkoro_0-1619540678326.png" alt="UcheOkoro_0-1619540678326.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would like something to similar to the following&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="UcheOkoro_1-1619540725435.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58729i9C8C3F3EC2EB867D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="UcheOkoro_1-1619540725435.png" alt="UcheOkoro_1-1619540725435.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 16:25:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737313#M35811</guid>
      <dc:creator>UcheOkoro</dc:creator>
      <dc:date>2021-04-27T16:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pooled descriptive statistics after multiple imputation</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737896#M35826</link>
      <description>&lt;P&gt;Not totally familiar with this, but based on the documentation, I think you will need to change your STRATA (misspelled, btw) to a DOMAIN statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Thu, 29 Apr 2021 13:18:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooled-descriptive-statistics-after-multiple-imputation/m-p/737896#M35826</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2021-04-29T13:18:57Z</dc:date>
    </item>
  </channel>
</rss>

