I am using the linear mixed function in SPSS and want to determine whether a continuous variable (attendance
) has an effect on the repeated measurement of my DV (GLS
). My hypothesis is that attendance
does have an effect on the DV. It was suggested that I add attendance
as a covariate but also as a fixed effect. From what I've read it seems like fixed effects are always categorical so does this make sense?
MIXED GLS BY TIME WITH ATTENDANCE
/FIXED=TIME ATTENDANCE |SSTYPE(3)
/METHOD=REML
/REPEATED=TIME | SUBJECT(PARTICIPANT_ID) COVTYPE(UN).
OR, should attendance only be a covariate?
MIXED GLS BY TIME WITH ATTENDANCE
/FIXED=TIME ATTENDANCE |SSTYPE(3)
/METHOD=REML
/REPEATED=TIME | SUBJECT(PARTICIPANT_ID) COVTYPE(UN).