I'm new to SAS, and I am a bit stuck. Roughly here is the design: 60 participants each completed the same comprehension test twice (scored 0-6). Once after reading each text in two different Formats (i.e., Single and Control). When they read the different Formats, two topics were presented so participants didn't read the same topic twice. One was based on Animations and the other was based on People. (Note: order was counterbalanced and is not a variable of interest). I want to look at ME of each Format and Topic AND Format*Topic Data is set up like this: ID Order Ani1 Single1 Score 1 1 1 1 5 6 1 1 1 6 7 0 1 1 6 8 0 1 1 2 --- 1 1 0 0 6 6 1 0 0 6 7 0 0 0 3 8 0 0 0 4 --- 5 0 0 1 1 9 1 0 1 2 3 1 0 1 3 4 1 0 1 2 -- 5 0 1 0 4 9 1 1 0 3 3 1 1 0 5 4 1 1 0 2 My code looks like this: PROC MIXED DATA=x; MODEL score = Ani1|Single1 / S DDFM=kr; REPEATED / SUBJECT = ID TYPE=un; run; However, I am not confident it is correct, since I get the SAME results (below) with and without the Repeated/Subject line in the code. Am I doing something wrong? Solution for Fixed EffectsEffect Estimate StandardError DF t Value Pr > |t|InterceptAni1Single1Ani1*Single1 3.8824 0.2745 114 14.14 <.0001 1.0776 0.4217 114 2.56 0.0119 -0.8424 0.4217 114 -2.00 0.0482 0.1471 0.5964 114 0.25 0.8057
... View more