All -- I'm attempting to run a repeated measures ANOVA using proc glm. The problem I'm encountering is that I'm getting pathological estimates (or no estimates) of the the main effect for one of the repeated factors and the interactions involving that factor. The data consist of a between-subjects factor (Group) and two within-subjects factors Response_Type and Stage, each with two levels. Here is the section of code that I've written for the analysis: /* --- code starts here --- */ proc print data = frn_ii7; title "frn_ii7"; run; proc glm data = frn_ii7; class Group; model frn1-frn4 = Group / effectsize nouni; means Group / tukey lines; repeated Response_Type 2, Stage 2 / summary; title "MAID: PST FRN II Amplitudes as a Function of Group, Response Type, and Stage"; label frn1 = "FRN Amplitude (uV), incorrect early" frn2 = "FRN Amplitude (uV), incorrect late" frn3 = "FRN Amplitude (uV), correct early" frn4 = "FRN Amplitude (uV), correct late"; run; /* --- code ends here --- */ I first print out the data set to see if there are any obvious problems, and then runs the repeated measures ANOVA. I've attached the section of the listing that is produced. In the printout of the data set, I don't see any obvious problems other than one subject missing data for the dependent variables (frn1-frn4). glm produces the Tukey tests for the effect of Group for each of the variables, the number of observations is correct, the repeated measures level information is correct, but the information for the main effect of Response_Type and the interactions involving Response_Type are all missing. The estimate of the main effect of Group is provided, the estimate of the main effect of stage is provided, but anything involving Response_Type is blank. I've never run into this problem with proc glm, and this code works with a different data set that has the same structure, which suggests that there is something "wrong" with this data set. But I don't see anything obvious. Can anyone provide any insight into this? My thanks in advance, -Michael
... View more