<?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: Can you model more than one cluster in Generalized Estimating Equations? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Can-you-model-more-than-one-cluster-in-Generalized-Estimating/m-p/561185#M27755</link>
    <description>&lt;P&gt;See &lt;A href="http://support.sas.com/kb/24200" target="_self"&gt;this note&lt;/A&gt;, particularly the last section on nested structures.&lt;/P&gt;</description>
    <pubDate>Thu, 23 May 2019 15:25:10 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2019-05-23T15:25:10Z</dc:date>
    <item>
      <title>Can you model more than one cluster in Generalized Estimating Equations?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Can-you-model-more-than-one-cluster-in-Generalized-Estimating/m-p/561043#M27752</link>
      <description>&lt;P&gt;Is it possible to model for more than one type of cluster with GEE? I have been attempting to cluster not only by participant (within-person correlation T1 to T2, only two measurement points) as well as by facility in which each participant resided (nursing home). However, I notice with my SAS syntax that when I include modelling by facility (by including my variable "FAC" in the CLASS line), that the estimates are &lt;STRONG&gt;identical&lt;/STRONG&gt; to when I do not include this variable. This makes me think that something is awry. Here is my code (which uses multiple imputation):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PROC GENMOD DATA=LONGGEE;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CLASS ID TIME FAC;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MODEL GDS=DAYSOLD GENDER EDUCCOLL ADL COGTOTSAS NHP PEFITTOTSAS SD SOCTOTSAS / DIST=POISSON LINK=LOG COVB; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SCALE=1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;BY _Imputation_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;REPEATED SUBJECT=ID / TYPE=unstr MODELSE PRINTMLE MCOVB ECOVB CORRW;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ODS OUTPUT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ParameterEstimates=norepeat_est&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Covb=norepeat_covb&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ParmInfo=parminfo&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;GEEModPEst=mod_est&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;GEENCov=mod_covb&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;GEEEmpPEst=emp_est&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;GEERCov=emp_covb&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RUN;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PROC MIANALYZE parms = norepeat_est covb = norepeat_covb parminfo=parminfo;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CLASS ID TIME FAC;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MODELEFFECTS DAYSOLD GENDER EDUCCOLL ADL COGTOTSAS NHP PEFITTOTSAS SD SOCTOTSAS;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RUN;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PROC MIANALYZE parms = mod_est covb = mod_covb parminfo=parminfo;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CLASS ID TIME FAC;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MODELEFFECTS DAYSOLD GENDER EDUCCOLL ADL COGTOTSAS NHP PEFITTOTSAS SD SOCTOTSAS;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RUN;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PROC MIANALYZE parms=emp_est covb=emp_covb parminfo=parminfo;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CLASS ID TIME FAC;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MODELEFFECTS DAYSOLD GENDER EDUCCOLL ADL COGTOTSAS NHP PEFITTOTSAS SD SOCTOTSAS;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RUN;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 05:37:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Can-you-model-more-than-one-cluster-in-Generalized-Estimating/m-p/561043#M27752</guid>
      <dc:creator>rebeccachau</dc:creator>
      <dc:date>2019-05-23T05:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Can you model more than one cluster in Generalized Estimating Equations?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Can-you-model-more-than-one-cluster-in-Generalized-Estimating/m-p/561185#M27755</link>
      <description>&lt;P&gt;See &lt;A href="http://support.sas.com/kb/24200" target="_self"&gt;this note&lt;/A&gt;, particularly the last section on nested structures.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 15:25:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Can-you-model-more-than-one-cluster-in-Generalized-Estimating/m-p/561185#M27755</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2019-05-23T15:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Can you model more than one cluster in Generalized Estimating Equations?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Can-you-model-more-than-one-cluster-in-Generalized-Estimating/m-p/561271#M27758</link>
      <description>&lt;P&gt;Perfect. Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 01:30:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Can-you-model-more-than-one-cluster-in-Generalized-Estimating/m-p/561271#M27758</guid>
      <dc:creator>rebeccachau</dc:creator>
      <dc:date>2019-05-24T01:30:39Z</dc:date>
    </item>
  </channel>
</rss>

