Does anyone know how to run a parallel model in proc mixed to the following:
proc glm;
class group wave danva_c_sex;
model danva_c_afsaderr danva_c_afangerr danva_c_affeaerr danva_c_afhaperr= group wave danva_c_sex danva_c_age_y group*danva_c_sex;
lsmeans group group*danva_c_sex / pdiff=all;
repeated trial 4;
run;
Perhaps it is not possible, but I have been trying to use the repeated statement in proc mixed without much luck.
By way of explanation, the danva variables on the left side of the glm equation are subjects errors on different emotional faces. I am trying to test for an overall effect of emotion and these faces are given in a series, which is why most people analyze them as a repeated measure.
Any help would be appreciated!
... View more