<?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 Pooling ICCs after/within MIANALYZE in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/604839#M29385</link>
    <description>&lt;P&gt;Hello there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have done multilevel multiple imputation and I am running a 3-level model using GLIMMIX. I have ran and pooled my results using PROC MIANALYZE but this only prints fixed effects and I am wondering if there is a way to print random effects i.e. the random intercepts for level 2 and level 3 so I can calculate the associated pooled ICC?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jillian&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 17 Nov 2019 20:31:04 GMT</pubDate>
    <dc:creator>halladje</dc:creator>
    <dc:date>2019-11-17T20:31:04Z</dc:date>
    <item>
      <title>Pooling ICCs after/within MIANALYZE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/604839#M29385</link>
      <description>&lt;P&gt;Hello there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have done multilevel multiple imputation and I am running a 3-level model using GLIMMIX. I have ran and pooled my results using PROC MIANALYZE but this only prints fixed effects and I am wondering if there is a way to print random effects i.e. the random intercepts for level 2 and level 3 so I can calculate the associated pooled ICC?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jillian&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2019 20:31:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/604839#M29385</guid>
      <dc:creator>halladje</dc:creator>
      <dc:date>2019-11-17T20:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling ICCs after/within MIANALYZE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/605375#M29403</link>
      <description>&lt;P&gt;You can also us MIANALYZE to combine the random effects as well.&amp;nbsp; You would have to do something like the example below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data hlm3;&lt;BR /&gt;seedval = 9273448;&lt;BR /&gt;do _imputation_=1 to 3;&lt;BR /&gt;do school = 1 to 5;&lt;BR /&gt;call rannor(seedval,usi);&lt;BR /&gt;call rannor(seedval,ust);&lt;BR /&gt;do class = 1 to 3;&lt;BR /&gt;call rannor(seedval,uci);&lt;BR /&gt;call rannor(seedval,uct);&lt;BR /&gt;do pupil = 1 to 10;&lt;BR /&gt;call rannor(seedval,upi);&lt;BR /&gt;call rannor(seedval,upt);&lt;BR /&gt;do time = 1 to 3;&lt;BR /&gt;call rannor(seedval,e);&lt;BR /&gt;y = 1 + usi + uci + upi + &lt;BR /&gt;time*(1 + ust + uct + upt) + e;&lt;BR /&gt;output;&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;end;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;proc mixed data=hlm3;&lt;BR /&gt;by _imputation_;&lt;BR /&gt;class school;&lt;BR /&gt;model y = time / s;&lt;BR /&gt;random int time / subject=school solution;;&lt;BR /&gt;ods output solutionr=rparms(rename=(stderrpred=stderr));&lt;BR /&gt;run;&lt;BR /&gt;/*Skip this step and remove the BY statement if you do not have*/&lt;BR /&gt;/*the SUBJECT= option on the RANDOM statement*/&lt;BR /&gt;proc sort data=rparms;&lt;BR /&gt;by school _imputation_;&lt;BR /&gt;run;&lt;BR /&gt;proc mianalyze parms=rparms;&lt;BR /&gt;by school;&lt;BR /&gt;modeleffects intercept time;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 13:03:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/605375#M29403</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2019-11-19T13:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling ICCs after/within MIANALYZE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/605440#M29408</link>
      <description>&lt;P&gt;Thanks for the suggestion! I tried using your suggested code and the rparms dataset was not created.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the code I used - let me know your thoughts:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glimmix data=fullblimp noclprint method=rspl noclprint ;&lt;BR /&gt;class x_idschool x_class_id ;&lt;BR /&gt;model ov=&lt;BR /&gt;/CL dist=normal link=identity solution cl;&lt;BR /&gt;by _imputation_;&lt;BR /&gt;random intercept/subject=x_idschool type=VC;&lt;BR /&gt;random intercept/subject=x_class_ID (x_idschool) Type=VC;&lt;BR /&gt;ods output solutionr=rparms(rename=(stderrpred=stderr));&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;proc sort data=rparms; by _imputation_ x_idschool x_class_ID;run;&lt;BR /&gt;proc mianalyze parms=rparms;&lt;BR /&gt;by x_idschool x_class_ID;&lt;BR /&gt;modeleffects intercept;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 16:19:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/605440#M29408</guid>
      <dc:creator>halladje</dc:creator>
      <dc:date>2019-11-19T16:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling ICCs after/within MIANALYZE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/605444#M29409</link>
      <description>&lt;P&gt;You'll need the SOLUTION option on the RANDOM statement&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 16:28:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/605444#M29409</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2019-11-19T16:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling ICCs after/within MIANALYZE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/605603#M29420</link>
      <description>&lt;P&gt;Still running into errors - let me know if you see an issue with the code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;input:&lt;/P&gt;&lt;P&gt;**ICCS*;&lt;BR /&gt;proc glimmix data=fullblimp noclprint method=rspl noclprint ;&lt;BR /&gt;class x_idschool x_class_id ;&lt;BR /&gt;model ov=&lt;BR /&gt;/CL dist=normal link=identity solution cl;&lt;BR /&gt;by _imputation_;&lt;BR /&gt;random intercept/subject=x_idschool type=VC solution;&lt;BR /&gt;random intercept/subject=x_class_ID (x_idschool) Type=VC solution;&lt;BR /&gt;ods output solutionr=rparms(rename=(stderrpred=stderr));&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;proc sort data=rparms; by _imputation_ x_idschool x_class_ID;run;&lt;BR /&gt;proc mianalyze parms=rparms;&lt;BR /&gt;by x_idschool x_class_ID;&lt;BR /&gt;modeleffects intercept;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sort data=rparms; by _imputation_ x_idschool x_class_ID;run;&lt;BR /&gt;ERROR: Variable X_IDSCHOOL not found.&lt;BR /&gt;ERROR: Variable X_CLASS_ID not found.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc mianalyze parms=rparms;&lt;BR /&gt;40 by x_idschool x_class_ID;&lt;BR /&gt;ERROR: Variable X_IDSCHOOL not found.&lt;BR /&gt;ERROR: Variable X_CLASS_ID not found.&lt;BR /&gt;41 modeleffects intercept;&lt;BR /&gt;42 run;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 02:25:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/605603#M29420</guid>
      <dc:creator>halladje</dc:creator>
      <dc:date>2019-11-20T02:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Pooling ICCs after/within MIANALYZE</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/615986#M29703</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am still experiencing issues with pooling ICCs. Please let me know if you have any further suggestions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jillian&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 17:07:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Pooling-ICCs-after-within-MIANALYZE/m-p/615986#M29703</guid>
      <dc:creator>halladje</dc:creator>
      <dc:date>2020-01-08T17:07:25Z</dc:date>
    </item>
  </channel>
</rss>

