<?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: PROC MIXED and GLM Repeated Anova results interpretation? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/663134#M31601</link>
    <description>&lt;P&gt;I cannot tell what happened by looking at the output - there must be something in the log that indicates why the program ran into issues.&amp;nbsp; Could you post the log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jun 2020 12:19:47 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2020-06-18T12:19:47Z</dc:date>
    <item>
      <title>PROC MIXED and GLM Repeated Anova results interpretation?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/660180#M31584</link>
      <description>&lt;P&gt;I have been trying to run a Repeated measures anova &lt;SPAN&gt;to analyze if there are differences in cover averages of native plants between four different treatments over time. I have been using the&amp;nbsp;following UCLA stats link to code using PROC MIXED and PROC GLM.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://stats.idre.ucla.edu/sas/faq/how-can-i-perform-a-repeated-measures-anova-with-proc-mixed/" target="_self"&gt;Link&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PROC MIXED&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC MIXED DATA=work.import1;
  CLASS subject treatment trial;
  MODEL cover_average = treatment trial treatment*trial;
  REPEATED trial / SUBJECT=subject TYPE=CS;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;PROC GLM&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC GLM DATA=WORK.IMPORT;
	CLASS TREATMENT;
	MODEL MONTH1-MONTH9 = TREATMENT / NOUNI;
	REPEATED TREATMENT 9;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The article didn't provide a way for me to interpret the results so I need help in interpreting the attached output. Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 20:43:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/660180#M31584</guid>
      <dc:creator>JOEY21</dc:creator>
      <dc:date>2020-06-16T20:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MIXED and GLM Repeated Anova results interpretation?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/661707#M31585</link>
      <description>&lt;P&gt;Before we get into interpretation, you will need to modify your PROC MIXED code.&amp;nbsp; Note that there are factors in the ANOVA table with 0 denominator degrees of freedom.&amp;nbsp; You will have to provide the denominator degrees of freedom with a ddf= option, or switch to a nondefault method like Satterthwaite or Kenward-Rogers. Additionally, for measurements over time, a compound symmetry assumption does not model any autoregressive error.&amp;nbsp; That is, time points closer together in time should have a higher correlation of errors than those separated farther in time. Compound symmetry assumes that the covariance between timepoints is constant and equal. I would suggest the following&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC MIXED DATA=work.import1;
  CLASS subject treatment trial;
  MODEL cover_average = treatment trial treatment*trial/ddfm= kenwardrogers2 ;
  REPEATED trial / SUBJECT=subject TYPE=AR(1);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Also, the plots from PROC CORR indicate that cover_average has a long tail to the right, so that the errors likely do not have a normal distribution.&amp;nbsp; That could be addressed by using PROC GLIMMIX with an appropriate distribution and link function, but for now, try the PROC MIXED code suggested and we can address the question of interpretation.&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>Wed, 17 Jun 2020 12:09:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/661707#M31585</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-06-17T12:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MIXED and GLM Repeated Anova results interpretation?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/661908#M31591</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made those adjustments but it seems the Autoregression removed results.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2020 20:28:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/661908#M31591</guid>
      <dc:creator>JOEY21</dc:creator>
      <dc:date>2020-06-17T20:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MIXED and GLM Repeated Anova results interpretation?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/662564#M31593</link>
      <description>&lt;P&gt;We need to focus on your experimental design.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As specified in your model, Subject is random effects factor. The coding for Subject doesn't really matter--it's just an identification code specified as a classification factor in the CLASS statement. In your PROC MIXED output, Subject has values of&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1 2 3 0.5 1.5 0.25 0.75 0.3333333333 0.6666666667&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;which suggests to me that you might not be thinking of Subject in an appropriate way (typically, Subject might be coded as a/b/c... or 1/2/3...). A model that is not consistent with the design would be the cause of zero df and missing p values, and too few observations for the model you have specified.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To help you sort this out, we need to know the details of your experimental design--something like a concise Methods section in a manuscript.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps move you forward.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2020 05:00:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/662564#M31593</guid>
      <dc:creator>sld</dc:creator>
      <dc:date>2020-06-18T05:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MIXED and GLM Repeated Anova results interpretation?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/663134#M31601</link>
      <description>&lt;P&gt;I cannot tell what happened by looking at the output - there must be something in the log that indicates why the program ran into issues.&amp;nbsp; Could you post the log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2020 12:19:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MIXED-and-GLM-Repeated-Anova-results-interpretation/m-p/663134#M31601</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-06-18T12:19:47Z</dc:date>
    </item>
  </channel>
</rss>

