<?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: standard variance components  structure for GLMM in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/standard-variance-components-structure-for-GLMM/m-p/674301#M32270</link>
    <description>&lt;P&gt;Could you share code?&amp;nbsp; Of interest to me would be the candidate covariance structures, and the number of repeated time points.&amp;nbsp; From that you should be able to see why VC minimized the information criteria.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
    <pubDate>Tue, 04 Aug 2020 10:54:38 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2020-08-04T10:54:38Z</dc:date>
    <item>
      <title>standard variance components  structure for GLMM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/standard-variance-components-structure-for-GLMM/m-p/674131#M32260</link>
      <description>&lt;P&gt;Hello everyone.&lt;/P&gt;&lt;P&gt;I'm currently working on a GLMM for a repeated measures design whith a binary outcome.&lt;/P&gt;&lt;P&gt;I use PROC GLIMMIX to do so and I've compared different covariance structures using information criteria.&lt;/P&gt;&lt;P&gt;The standard variance components structure (TYPE=VC) gives me the lowest BIC so far. Since I'm working on repeated measures, I'm a bit doubtful about how I should interpret this.&lt;/P&gt;&lt;P&gt;Does this mean that the different measures for a same individual are absolutely not correlated ? Therefore would a simple logistic regression gives me the same results ?&lt;/P&gt;&lt;P&gt;Thank you by advance.&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;</description>
      <pubDate>Mon, 03 Aug 2020 13:41:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/standard-variance-components-structure-for-GLMM/m-p/674131#M32260</guid>
      <dc:creator>Marc-Flo</dc:creator>
      <dc:date>2020-08-03T13:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: standard variance components  structure for GLMM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/standard-variance-components-structure-for-GLMM/m-p/674301#M32270</link>
      <description>&lt;P&gt;Could you share code?&amp;nbsp; Of interest to me would be the candidate covariance structures, and the number of repeated time points.&amp;nbsp; From that you should be able to see why VC minimized the information criteria.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 10:54:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/standard-variance-components-structure-for-GLMM/m-p/674301#M32270</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-08-04T10:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: standard variance components  structure for GLMM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/standard-variance-components-structure-for-GLMM/m-p/674323#M32276</link>
      <description>&lt;P&gt;Hello Steve and thank you for your answer.&lt;/P&gt;&lt;P&gt;Here's the code I use:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC GLIMMIX DATA=suivi_file METHOD=laplace IC=q NOCLPRINT;
CLASS id_pat profil sexe prescr ass_so tble_psy;
EFFECT spl_tps=SPLINE(temps / DEGREE=1 KNOTMETHOD=LIST(70) DETAILS);
MODEL bilan(EVENT='1') = spl_tps|profil age sexe tble_psy ass_so prescr / DIST = BINARY LINK=LOGIT S INTERCEPT;
RANDOM INTERCEPT temps / SUB=id_pat TYPE=VC;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I should precise that the number of repeated time points is variable between subject and varies from 1 to 18. Also, time points are not evenly spaced in time.&lt;/P&gt;&lt;P&gt;So far, my best two candidates as covariance structure are VC (AICC = 39401.8) and ANTE(1) (AICC=39402.5). Considering the low difference between these two results I might be tempted to choose the ante-dependence structure which makes more sense in a repeated measures situation.&lt;/P&gt;&lt;P&gt;Thank you for your future response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 11:54:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/standard-variance-components-structure-for-GLMM/m-p/674323#M32276</guid>
      <dc:creator>Marc-Flo</dc:creator>
      <dc:date>2020-08-04T11:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: standard variance components  structure for GLMM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/standard-variance-components-structure-for-GLMM/m-p/674362#M32278</link>
      <description>&lt;P&gt;Have you considered spatial power, SP(POW)(index), as a possible structure. You would need to create a continuous variable equal to &lt;STRONG&gt;temps&amp;nbsp;&lt;/STRONG&gt;(call it&lt;STRONG&gt; t,&amp;nbsp;&lt;/STRONG&gt;for example), and then splitting your random statement into two statements, where you do not look at the covariance between the intercept and the slope.&amp;nbsp; That is:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;PROC GLIMMIX DATA=suivi_file METHOD=laplace IC=q NOCLPRINT;
CLASS id_pat profil sexe prescr ass_so tble_psy;
EFFECT spl_tps=SPLINE(temps / DEGREE=1 KNOTMETHOD=LIST(70) DETAILS);
MODEL bilan(EVENT='1') = profil spl_tps*profil age sexe tble_psy ass_so prescr / DIST = BINARY LINK=LOGIT S INTERCEPT;
RANDOM INTERCEPT  / SUB=id_pat ;
RANDOM temps / sub=id_pat type=sp(pow)(t);
RUN;&lt;/LI-CODE&gt;
&lt;P&gt;Note that the spline term only appears as an interaction with profil, and not as a stand-alone term.&amp;nbsp; I got this idea from the example&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_glimmix_examples20.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;.&amp;nbsp; The example goes on to show how to compare differences at various points along the spline.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With the split of the random statement into separate intercepts and slopes, you could also look at:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RANDOM temps / sub=id_pat type=csh; (remove the random intercept if you try this)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 14:11:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/standard-variance-components-structure-for-GLMM/m-p/674362#M32278</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-08-04T14:11:36Z</dc:date>
    </item>
  </channel>
</rss>

