<?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: repeated measures ANOVA or PROC GLM...HELP! in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/repeated-measures-ANOVA-or-PROC-GLM-HELP/m-p/304234#M16169</link>
    <description>&lt;P&gt;If I was right "&lt;SPAN&gt;(repeated measures ANOVA) " is called MIXED model.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You have two ways to do&amp;nbsp;(repeated measures ANOVA) :&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1) using proc glm + manova statement -- do some multiple variable analysis&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;Check proc glm's documentation ,there is an example about it .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;Example 46.7: Repeated Measures Analysis of Variance&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2) using MIXED Model. Check proc mixed, proc glmmix .....&amp;nbsp;@Steve&amp;nbsp;@lvm &amp;nbsp;can give you good advice.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;P.S. I suggested you use Mixed model which have good ability to handle missing value.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Oct 2016 03:33:06 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2016-10-13T03:33:06Z</dc:date>
    <item>
      <title>repeated measures ANOVA or PROC GLM...HELP!</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/repeated-measures-ANOVA-or-PROC-GLM-HELP/m-p/304194#M16166</link>
      <description>&lt;P&gt;Dear SAS Friends,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The good news is, the article was accepted. The bad news is one of the reviewers wants something (repeated measures ANOVA) and I don't know how to provide it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hopefully with the information I provide here you can tell me if I can even do it. I'd like to hope the reviewer has lost his/her mind, but I'm pretty sure I'm just not doing something correctly. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Okay. I have a financial education course (treatment). I collected pretest scores (preknow) and posttest (postknow) scores. I have race (black/notblack), age (youngadult, adult, slightlyolderadult, midage, older), and education level (notgradhs hsgedordip somecollegeormore) as demographic variables. I have some other predictor variables, but we'll use these as an example and if I can run it I can figure it out (I hope, pray, think) from the information you all provide me here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The reviewer wants to know who learned the most from the treatment/who learned more. When I googled repeated measures ANOVA, it led me to PROC GLM with some other nifty pieces. So, here's what I've got:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm;
class black youngadult adult slightlyolderadult midage older notgradhs HSGEDorDip somecollegeormore;
model preknow postknow = black youngadult adult slightlyolderadult midage older notgradhs HSGEDorDip somecollegeormore black*notgradhs black*hsgedordip 
black*somecollegeormore black*youngadult black*adult black*slightlyolderadult black*midage black*older /nouni;
repeated postknow;
lsmeans black youngadult adult slightlyolderadult midage older notgradhs HSGEDorDip somecollegeormore black*notgradhs black*hsgedordip
black*somecollegeormore black*youngadult black*adult black*slightlyolderadult black*midage black*older;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now, the good news is, the procedure runs. The bad news is I get crap.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;somecollegeormore preknow LSMEAN postknow LSMEAN&lt;BR /&gt;0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Non-est &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Non-est&lt;BR /&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Non-est &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Non-est&lt;/P&gt;
&lt;P&gt;black NotGradHS preknow LSMEAN postknow LSMEAN&lt;BR /&gt;0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Non-est &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Non-est&lt;BR /&gt;0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Non-est&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Non-est&lt;BR /&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Non-est &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Non-est&lt;BR /&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Non-est &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Non-est&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and in the log&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: H Matrix for postknow*youngadult has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*adult has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*slightlyolderadult has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*midage has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*older has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*black*NotGradHS has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*black*HSGEDorDip has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*black*somecollegeorm has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*black*youngadult has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*black*adult has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*black*slightlyoldera has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*black*midage has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: H Matrix for postknow*black*older has zero d.f.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NOTE: The Huynh-Feldt epsilon and the corresponding adjusted p-value have been enhanced to&lt;BR /&gt; include a correction based on Lecoutre (1991). Use the UEPSDEF=HF option on the REPEATED&lt;BR /&gt; statement to revert to the previous definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for any help you can provide.&lt;/P&gt;
&lt;P&gt;Kate&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 20:52:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/repeated-measures-ANOVA-or-PROC-GLM-HELP/m-p/304194#M16166</guid>
      <dc:creator>ksmielitz</dc:creator>
      <dc:date>2016-10-12T20:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: repeated measures ANOVA or PROC GLM...HELP!</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/repeated-measures-ANOVA-or-PROC-GLM-HELP/m-p/304234#M16169</link>
      <description>&lt;P&gt;If I was right "&lt;SPAN&gt;(repeated measures ANOVA) " is called MIXED model.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You have two ways to do&amp;nbsp;(repeated measures ANOVA) :&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1) using proc glm + manova statement -- do some multiple variable analysis&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;Check proc glm's documentation ,there is an example about it .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;Example 46.7: Repeated Measures Analysis of Variance&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2) using MIXED Model. Check proc mixed, proc glmmix .....&amp;nbsp;@Steve&amp;nbsp;@lvm &amp;nbsp;can give you good advice.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;P.S. I suggested you use Mixed model which have good ability to handle missing value.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 03:33:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/repeated-measures-ANOVA-or-PROC-GLM-HELP/m-p/304234#M16169</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-10-13T03:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: repeated measures ANOVA or PROC GLM...HELP!</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/repeated-measures-ANOVA-or-PROC-GLM-HELP/m-p/304237#M16171</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp﻿&lt;/a&gt;&amp;nbsp;Thank you, I'll check out your suggestions!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 04:13:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/repeated-measures-ANOVA-or-PROC-GLM-HELP/m-p/304237#M16171</guid>
      <dc:creator>ksmielitz</dc:creator>
      <dc:date>2016-10-13T04:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: repeated measures ANOVA or PROC GLM...HELP!</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/repeated-measures-ANOVA-or-PROC-GLM-HELP/m-p/304501#M16179</link>
      <description>&lt;P&gt;I ended up using PROC MIXED...still no significant results, but I'm happy because I was right...ROFL.&lt;/P&gt;
&lt;P&gt;Thanks for your help,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp﻿&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 23:30:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/repeated-measures-ANOVA-or-PROC-GLM-HELP/m-p/304501#M16179</guid>
      <dc:creator>ksmielitz</dc:creator>
      <dc:date>2016-10-13T23:30:50Z</dc:date>
    </item>
  </channel>
</rss>

