<?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: GEE Variance Component -  An R-side variance component is confounded in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801965#M39425</link>
    <description>&lt;P&gt;I really appreciate the insights, but I feel like that is equivalent to saying that other multi-level models are better than GEE. Note that there is only one observation per patient; we are clustering by doctor since we expect there to be an association between patients that saw the same doctor. Our analysis is not interested in estimating the effect of the doctor, but we wanted to take into account the natural clustering construction of the data. It is for this reason we chose a GEE instead of say an HLM.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Mar 2022 16:11:39 GMT</pubDate>
    <dc:creator>JonKetchup</dc:creator>
    <dc:date>2022-03-14T16:11:39Z</dc:date>
    <item>
      <title>GEE Variance Component -  An R-side variance component is confounded</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801878#M39414</link>
      <description>&lt;P&gt;I built a GEE with a compound symmetry covariance structure using PROC GLIMMIX - observations are clustered by "doctor", and each doctor can see as many as 100 patients. I would like to compare to a GEE a variance component covariance structure. However, whenever I run the code, I get the note, "An R-side variance component is confounded with the profiled variance." What does this mean and is it ignorable? Even if I change the covariates in the model, I get this same note. Appreciate the help. Here is my code. The variable constructions are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Outcome: binary yes/no&lt;/LI&gt;
&lt;LI&gt;Location: binary, location1/location2&lt;/LI&gt;
&lt;LI&gt;Var2: binary, yes/no&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc GLIMMIX data = DATA ORDER=INTERNAL empirical=root ;
class Doctor Location Var2;
model Outcome(event='1')= Location|Var2     
	/ dist=bin link=logit covb solution ;
RANDOM _residual_ / SUBJECT=Doctor TYPE=VC vcorr  solution;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;NOTE: An R-side variance component is confounded with the profiled variance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 20:25:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801878#M39414</guid>
      <dc:creator>JonKetchup</dc:creator>
      <dc:date>2022-03-13T20:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: GEE Variance Component -  An R-side variance component is confounded</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801879#M39415</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See here :&lt;/P&gt;
&lt;P&gt;Need Help Deciphering a Mysterious Note in the SAS Log When Running PROC GLIMMIX &lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/Statistical-Procedures/Need-Help-Deciphering-a-Mysterious-Note-in-the-SAS-Log-When/td-p/568622" target="_blank"&gt;https://communities.sas.com/t5/Statistical-Procedures/Need-Help-Deciphering-a-Mysterious-Note-in-the-SAS-Log-When/td-p/568622&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See also here (although this paper contains no direct mentioning of the NOTE you have bumped into) :&lt;/P&gt;
&lt;P&gt;SAS Global Forum Proceedings 2018 : Paper SAS2179-2018&lt;BR /&gt;Insights into Using the GLIMMIX Procedure to Model Categorical Outcomes with Random Effects&lt;BR /&gt;Kathleen Kiernan, SAS Institute Inc.&lt;BR /&gt;&lt;A href="https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2018/2179-2018.pdf" target="_blank"&gt;https://www.sas.com/content/dam/SAS/support/en/sas-global-forum-proceedings/2018/2179-2018.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 13 Mar 2022 20:54:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801879#M39415</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-03-13T20:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: GEE Variance Component -  An R-side variance component is confounded</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801880#M39416</link>
      <description>&lt;P&gt;Thanks for the resources. I stumbled on the post previously. The model in that post had random effects such that both the g-sided and r-sided effects were defined; my model only has r-sided effects, but I'm not sure if that matters. I tried the adjusted code and got the exact same output with the same note.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc GLIMMIX data = DATA ORDER=INTERNAL empirical=root ;
class ID Doctor Location Var2;
model Outcome(event='1')= Location|Var2     
	/ dist=bin link=logit covb solution ;
RANDOM _residual_ / SUBJECT=ID(Doctor) TYPE=VC vcorr  solution;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 13 Mar 2022 21:04:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801880#M39416</guid>
      <dc:creator>JonKetchup</dc:creator>
      <dc:date>2022-03-13T21:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: GEE Variance Component -  An R-side variance component is confounded</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801935#M39421</link>
      <description>&lt;P&gt;R-side structures are notoriously difficult to fit and interpret when you have a binary response. If you wish to correlate the observations from the same patient, then try fitting this as G-side instead with&lt;/P&gt;
&lt;P&gt;random intercept / subject=id(doctor);&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, try adding an NLOPTIONS statement to improve convergence&lt;/P&gt;
&lt;P&gt;nloptions tech=nrridg;&lt;/P&gt;
&lt;P&gt;To understand the confounding message, consider a model with normal errors. An R-side fit of&amp;nbsp;&lt;/P&gt;
&lt;P&gt;random _residual_ / subject=id(doctor) type=vc;&lt;/P&gt;
&lt;P&gt;adds nothing to the model. The variance fit by this statement is the same as the residual error variance for this model. You can try adding a covariance structure to the R-side fit through the TYPE= option, but again these structures are hard to fit with a binary response.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 14:01:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801935#M39421</guid>
      <dc:creator>StatsMan</dc:creator>
      <dc:date>2022-03-14T14:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: GEE Variance Component -  An R-side variance component is confounded</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801965#M39425</link>
      <description>&lt;P&gt;I really appreciate the insights, but I feel like that is equivalent to saying that other multi-level models are better than GEE. Note that there is only one observation per patient; we are clustering by doctor since we expect there to be an association between patients that saw the same doctor. Our analysis is not interested in estimating the effect of the doctor, but we wanted to take into account the natural clustering construction of the data. It is for this reason we chose a GEE instead of say an HLM.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 16:11:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/GEE-Variance-Component-An-R-side-variance-component-is/m-p/801965#M39425</guid>
      <dc:creator>JonKetchup</dc:creator>
      <dc:date>2022-03-14T16:11:39Z</dc:date>
    </item>
  </channel>
</rss>

