<?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 Repeated Measures ANOVA - PROC GLM or PROC MIXED in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Repeated-Measures-ANOVA-PROC-GLM-or-PROC-MIXED/m-p/768912#M37603</link>
    <description>&lt;P&gt;I am trying to follow &lt;A href="https://stats.idre.ucla.edu/sas/faq/how-can-i-perform-a-repeated-measures-anova-with-proc-mixed/" target="_self"&gt;these instructions&lt;/A&gt; to perform a&amp;nbsp;Repeated Measures ANOVA. The example is from&amp;nbsp;a book entitled, Design and Analysis by G. Keppel. Pages 414-416.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to the instructions, "This example contains eight subjects (sub) with one between-subjects IV with two levels (group) and one within-subjects IV with four levels (indicated by position dv1–dv4)."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't have access to the book. What does dv1-dv4 refer to? It is the&amp;nbsp;dependent variable at time points 1-4? I'm assuming that's the case, but I'm confused by the reference to it as a "within-subjects"&amp;nbsp;independent variable.&lt;/P&gt;
&lt;PRE&gt; PROC GLM DATA=wide;
  CLASS group;
  MODEL dv1-dv4 = group / NOUNI ;
  REPEATED trial 4;
RUN; &lt;/PRE&gt;
&lt;P&gt;What is "trial" in the&amp;nbsp;REPEATED statement? Obviously the "4" refers to the 4 time points&amp;nbsp;(i.e., levels).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am simply preparing for the analysis. I don't have the data yet, so I don't know which format the data will be in&amp;nbsp;(i.e., wide v long).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, I'm going to need some help interpreting the output. Any suggested resources would be appreciated.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 21 Sep 2021 18:50:11 GMT</pubDate>
    <dc:creator>_maldini_</dc:creator>
    <dc:date>2021-09-21T18:50:11Z</dc:date>
    <item>
      <title>Repeated Measures ANOVA - PROC GLM or PROC MIXED</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Repeated-Measures-ANOVA-PROC-GLM-or-PROC-MIXED/m-p/768912#M37603</link>
      <description>&lt;P&gt;I am trying to follow &lt;A href="https://stats.idre.ucla.edu/sas/faq/how-can-i-perform-a-repeated-measures-anova-with-proc-mixed/" target="_self"&gt;these instructions&lt;/A&gt; to perform a&amp;nbsp;Repeated Measures ANOVA. The example is from&amp;nbsp;a book entitled, Design and Analysis by G. Keppel. Pages 414-416.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to the instructions, "This example contains eight subjects (sub) with one between-subjects IV with two levels (group) and one within-subjects IV with four levels (indicated by position dv1–dv4)."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't have access to the book. What does dv1-dv4 refer to? It is the&amp;nbsp;dependent variable at time points 1-4? I'm assuming that's the case, but I'm confused by the reference to it as a "within-subjects"&amp;nbsp;independent variable.&lt;/P&gt;
&lt;PRE&gt; PROC GLM DATA=wide;
  CLASS group;
  MODEL dv1-dv4 = group / NOUNI ;
  REPEATED trial 4;
RUN; &lt;/PRE&gt;
&lt;P&gt;What is "trial" in the&amp;nbsp;REPEATED statement? Obviously the "4" refers to the 4 time points&amp;nbsp;(i.e., levels).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am simply preparing for the analysis. I don't have the data yet, so I don't know which format the data will be in&amp;nbsp;(i.e., wide v long).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, I'm going to need some help interpreting the output. Any suggested resources would be appreciated.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Sep 2021 18:50:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Repeated-Measures-ANOVA-PROC-GLM-or-PROC-MIXED/m-p/768912#M37603</guid>
      <dc:creator>_maldini_</dc:creator>
      <dc:date>2021-09-21T18:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Repeated Measures ANOVA - PROC GLM or PROC MIXED</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Repeated-Measures-ANOVA-PROC-GLM-or-PROC-MIXED/m-p/768963#M37607</link>
      <description>&lt;P&gt;I highly recommend using PROC MIXED for repeated measures analysis. Here is an example that you might find helpful --&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_017/statug/statug_mixed_examples02.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/v_017/statug/statug_mixed_examples02.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Jill&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Sep 2021 21:51:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Repeated-Measures-ANOVA-PROC-GLM-or-PROC-MIXED/m-p/768963#M37607</guid>
      <dc:creator>jiltao</dc:creator>
      <dc:date>2021-09-21T21:51:11Z</dc:date>
    </item>
  </channel>
</rss>

