<?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 result from  proc quantreg (across 5 imputations) using proc mi analyze in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804542#M39597</link>
    <description>&lt;P&gt;Can you post the LOG as well?&amp;nbsp; In general, the approach you took should work, similar to this example:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data Fitness1; &lt;BR /&gt;input Oxygen RunTime RunPulse @@; &lt;BR /&gt;RT_Class=(runtime &amp;gt; 10.5);&lt;BR /&gt;datalines; &lt;BR /&gt;44.609 11.37 178 45.313 10.07 185 &lt;BR /&gt;54.297 8.65 156 59.571 . . &lt;BR /&gt;49.874 9.22 . 44.811 11.63 176 &lt;BR /&gt;. 11.95 176 . 10.85 . &lt;BR /&gt;39.442 13.08 174 60.055 8.63 170 &lt;BR /&gt;50.541 . . 37.388 14.03 186 &lt;BR /&gt;44.754 11.12 176 47.273 . . &lt;BR /&gt;51.855 10.33 166 49.156 8.95 180 &lt;BR /&gt;40.836 10.95 168 46.672 10.00 . &lt;BR /&gt;46.774 10.25 . 50.388 10.08 168 &lt;BR /&gt;39.407 12.63 174 46.080 11.17 156 &lt;BR /&gt;45.441 9.63 164 . 8.92 . &lt;BR /&gt;45.118 11.08 . 39.203 12.88 168 &lt;BR /&gt;45.790 10.47 186 50.545 9.93 148 &lt;BR /&gt;48.673 9.40 186 47.920 11.50 170 &lt;BR /&gt;47.467 10.50 170 &lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;/******/&lt;BR /&gt;/* MI */&lt;BR /&gt;/******/&lt;BR /&gt;proc mi data=Fitness1 seed=3237851 noprint out=outmi; &lt;BR /&gt;class RT_CLASS;&lt;BR /&gt;var Oxygen RT_Class RunPulse; &lt;BR /&gt;FCS;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc quantreg data=outmi CI=resampling; &lt;BR /&gt;by _Imputation_; &lt;BR /&gt;class RT_Class;&lt;BR /&gt;fitness: model Oxygen= RT_Class RunPulse / quantile=0.5;&lt;BR /&gt;ods output ParameterEstimates=PE;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc print;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc mianalyze parms(classvar=level)=PE &lt;BR /&gt;edf=28; &lt;BR /&gt;class RT_Class;&lt;BR /&gt;modeleffects Intercept RT_Class RunPulse;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Mar 2022 15:46:58 GMT</pubDate>
    <dc:creator>SAS_Rob</dc:creator>
    <dc:date>2022-03-28T15:46:58Z</dc:date>
    <item>
      <title>Pooling result from  proc quantreg (across 5 imputations) using proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804534#M39596</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please, I need help pooling the difference in median with 95% from proc quantreg across 5 imputation using proc MI analyze.&lt;/P&gt;
&lt;P&gt;From the log it appears that&amp;nbsp; I need the standard error for the median to do so.&lt;/P&gt;
&lt;P&gt;Please, I need help getting that .&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/******Diff. in Median for matched 28-hospital free days ****/
proc quantreg data=  Avera_matched_data;
   class telemed_use;
   model Hospital_free_days4 = telemed_use / quantile=0.5;
   estimate 'Diff in Medians' telemed_use 1 -1 / CL;
   ODS OUTPUT PARAMETERESTIMATES=diff_in_median ;
   by _Imputation_;
run;
PROC MIANALYZE PARMS(CLASSVAR=LEVEL)=diff_in_median;
 CLASS telemed_use;
 MODELEFFECTS telemed_use;
 ODS OUTPUT PARAMETERESTIMATES=diff_in_median2;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Mar 2022 15:11:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804534#M39596</guid>
      <dc:creator>UcheOkoro</dc:creator>
      <dc:date>2022-03-28T15:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling result from  proc quantreg (across 5 imputations) using proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804542#M39597</link>
      <description>&lt;P&gt;Can you post the LOG as well?&amp;nbsp; In general, the approach you took should work, similar to this example:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data Fitness1; &lt;BR /&gt;input Oxygen RunTime RunPulse @@; &lt;BR /&gt;RT_Class=(runtime &amp;gt; 10.5);&lt;BR /&gt;datalines; &lt;BR /&gt;44.609 11.37 178 45.313 10.07 185 &lt;BR /&gt;54.297 8.65 156 59.571 . . &lt;BR /&gt;49.874 9.22 . 44.811 11.63 176 &lt;BR /&gt;. 11.95 176 . 10.85 . &lt;BR /&gt;39.442 13.08 174 60.055 8.63 170 &lt;BR /&gt;50.541 . . 37.388 14.03 186 &lt;BR /&gt;44.754 11.12 176 47.273 . . &lt;BR /&gt;51.855 10.33 166 49.156 8.95 180 &lt;BR /&gt;40.836 10.95 168 46.672 10.00 . &lt;BR /&gt;46.774 10.25 . 50.388 10.08 168 &lt;BR /&gt;39.407 12.63 174 46.080 11.17 156 &lt;BR /&gt;45.441 9.63 164 . 8.92 . &lt;BR /&gt;45.118 11.08 . 39.203 12.88 168 &lt;BR /&gt;45.790 10.47 186 50.545 9.93 148 &lt;BR /&gt;48.673 9.40 186 47.920 11.50 170 &lt;BR /&gt;47.467 10.50 170 &lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;/******/&lt;BR /&gt;/* MI */&lt;BR /&gt;/******/&lt;BR /&gt;proc mi data=Fitness1 seed=3237851 noprint out=outmi; &lt;BR /&gt;class RT_CLASS;&lt;BR /&gt;var Oxygen RT_Class RunPulse; &lt;BR /&gt;FCS;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc quantreg data=outmi CI=resampling; &lt;BR /&gt;by _Imputation_; &lt;BR /&gt;class RT_Class;&lt;BR /&gt;fitness: model Oxygen= RT_Class RunPulse / quantile=0.5;&lt;BR /&gt;ods output ParameterEstimates=PE;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc print;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc mianalyze parms(classvar=level)=PE &lt;BR /&gt;edf=28; &lt;BR /&gt;class RT_Class;&lt;BR /&gt;modeleffects Intercept RT_Class RunPulse;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 15:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804542#M39597</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2022-03-28T15:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling result from  proc quantreg (across 5 imputations) using proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804544#M39598</link>
      <description>&lt;P&gt;The log is as follows:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="UcheOkoro_0-1648482905759.png" style="width: 732px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/69877iBD8ABB58EF037A19/image-dimensions/732x242?v=v2" width="732" height="242" role="button" title="UcheOkoro_0-1648482905759.png" alt="UcheOkoro_0-1648482905759.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 15:55:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804544#M39598</guid>
      <dc:creator>UcheOkoro</dc:creator>
      <dc:date>2022-03-28T15:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling result from  proc quantreg (across 5 imputations) using proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804547#M39599</link>
      <description>&lt;P&gt;This the full log&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="UcheOkoro_0-1648483083643.png" style="width: 722px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/69879i082BC42B8C0F04C3/image-dimensions/722x387?v=v2" width="722" height="387" role="button" title="UcheOkoro_0-1648483083643.png" alt="UcheOkoro_0-1648483083643.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 15:58:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804547#M39599</guid>
      <dc:creator>UcheOkoro</dc:creator>
      <dc:date>2022-03-28T15:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling result from  proc quantreg (across 5 imputations) using proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804553#M39600</link>
      <description>&lt;P&gt;You'll notice in the output from QUANTREG itself that there is not a standard error in the ParameterEstimates table.&amp;nbsp; That is because the default&amp;nbsp;confidence limits are computed with the inverse-rankscore method without computing a standard error. You need to specify the option CI=RESAMPLING or CI=SPARSITY in the PROC statement (see my example) to get standard errors.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 16:10:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804553#M39600</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2022-03-28T16:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling result from  proc quantreg (across 5 imputations) using proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804562#M39601</link>
      <description>&lt;P&gt;Thank you so much for your timely assistance. I am most grateful!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 16:32:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804562#M39601</guid>
      <dc:creator>UcheOkoro</dc:creator>
      <dc:date>2022-03-28T16:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling result from  proc quantreg (across 5 imputations) using proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804568#M39602</link>
      <description>&lt;P&gt;Please, how did you arrive at an EDF of 28?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 16:48:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804568#M39602</guid>
      <dc:creator>UcheOkoro</dc:creator>
      <dc:date>2022-03-28T16:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling result from  proc quantreg (across 5 imputations) using proc mi analyze</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804569#M39603</link>
      <description>&lt;P&gt;Never mind. I got it!. Thank you again!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 16:56:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-result-from-proc-quantreg-across-5-imputations-using/m-p/804569#M39603</guid>
      <dc:creator>UcheOkoro</dc:creator>
      <dc:date>2022-03-28T16:56:18Z</dc:date>
    </item>
  </channel>
</rss>

