<?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 adjdfe in GLIMMIX, MIXED in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/adjdfe-in-GLIMMIX-MIXED/m-p/179811#M45879</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I ran a program in both GLIMMIX and MIXED procs to perform Games-Howell test, but the software did not adjust DFs and the results are same as when I do not assume heterogeneity of variances.&lt;/P&gt;&lt;P&gt;This is the statements.&lt;/P&gt;&lt;P&gt;proc glimmix;&lt;/P&gt;&lt;P&gt;class trt;&lt;/P&gt;&lt;P&gt;model Cla=trt/ddfm=rk;&lt;/P&gt;&lt;P&gt;lsmeans trt/adjust=tukey adjdfe=row;&lt;/P&gt;&lt;P&gt;run;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate any help.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Feb 2015 11:43:07 GMT</pubDate>
    <dc:creator>EhsanKhedive</dc:creator>
    <dc:date>2015-02-24T11:43:07Z</dc:date>
    <item>
      <title>adjdfe in GLIMMIX, MIXED</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/adjdfe-in-GLIMMIX-MIXED/m-p/179811#M45879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I ran a program in both GLIMMIX and MIXED procs to perform Games-Howell test, but the software did not adjust DFs and the results are same as when I do not assume heterogeneity of variances.&lt;/P&gt;&lt;P&gt;This is the statements.&lt;/P&gt;&lt;P&gt;proc glimmix;&lt;/P&gt;&lt;P&gt;class trt;&lt;/P&gt;&lt;P&gt;model Cla=trt/ddfm=rk;&lt;/P&gt;&lt;P&gt;lsmeans trt/adjust=tukey adjdfe=row;&lt;/P&gt;&lt;P&gt;run;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate any help.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 11:43:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/adjdfe-in-GLIMMIX-MIXED/m-p/179811#M45879</guid>
      <dc:creator>EhsanKhedive</dc:creator>
      <dc:date>2015-02-24T11:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: adjdfe in GLIMMIX, MIXED</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/adjdfe-in-GLIMMIX-MIXED/m-p/179812#M45880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It may just be a typo, but I assume you are applying a Kenward-Rogers adjustment for the denominator degrees of freedom adjustment (where you have ddfm=rk, I think it is probably ddfm=kr in your actual code).&amp;nbsp; Unless you have unbalanced data, or an R side effect, the degrees of freedom will not change, so far as I remember.&amp;nbsp; Are you comparing (homogeneous variance):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glimmix;&lt;/P&gt;&lt;P&gt;class trt;&lt;/P&gt;&lt;P&gt;model Cla=trt/ddfm=kr;&lt;/P&gt;&lt;P&gt;lsmeans trt/adjust=tukey adjdfe=row;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to (heterogeneous variances by trt):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glimmix;&lt;/P&gt;&lt;P&gt;class trt;&lt;/P&gt;&lt;P&gt;model Cla=trt/ddfm=kr;&lt;/P&gt;&lt;P&gt;random _residual_/group=trt;&lt;/P&gt;&lt;P&gt;lsmeans trt/adjust=tukey adjdfe=row;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 12:34:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/adjdfe-in-GLIMMIX-MIXED/m-p/179812#M45880</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-02-24T12:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: adjdfe in GLIMMIX, MIXED</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/adjdfe-in-GLIMMIX-MIXED/m-p/179813#M45881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you dear Steve for the answer. &lt;/P&gt;&lt;P&gt;yes that was &lt;SPAN style="font-size: 13px; background-color: #ffffff;"&gt;Kenward-Rogers.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; I missed the random statement. I am comparing heterogeneous variances with unbalanced data. Can you explain a little what is R side effect, please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 16:10:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/adjdfe-in-GLIMMIX-MIXED/m-p/179813#M45881</guid>
      <dc:creator>EhsanKhedive</dc:creator>
      <dc:date>2015-02-24T16:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: adjdfe in GLIMMIX, MIXED</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/adjdfe-in-GLIMMIX-MIXED/m-p/179814#M45882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;R side effects give rise to marginal estimates, and are the equivalent of the REPEATED statement in PROC MIXED.&amp;nbsp; They are invoked in PROC GLIMMIX by including the residual option after the slash, or when only fitting for overdispersion/hetereogeneity with the _residual_ option before the slash.&lt;/P&gt;&lt;P&gt;G side effects give rise to conditional estimates, and are the equivalent of the RANDOM statement in PROC MIXED.&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 13:06:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/adjdfe-in-GLIMMIX-MIXED/m-p/179814#M45882</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-02-26T13:06:50Z</dc:date>
    </item>
  </channel>
</rss>

