I am analysing treatment group differences at time 2 (two time points only) data on a psych measure outcome (with five covariates: age, gender, CVD, BMI and F2s), and I am interested in one of the predictor’s influence on this (f2s). The scripting I am planning to use (from another study of similar structure) includes using baseline F2s (F2_v1), however my restructured SPSS dataset (wide) has only the transposed F2.
How best to run a LMM analysis TMT*TIME*F2_baseline on a restructured dataset?
How do I keep the baseline F2s only - is there a step in the restructuring? (syntax below)
Thank you in advance.
MIXED bdi BY pptID Gender TMT CVD TIME WITH age BMI F2_V1
/CRITERIA=CIN(95) MXITER(100) MXSTEP(10) SCORING(1) SINGULAR(0.000000000001) HCONVERGE(0, ABSOLUTE) LCONVERGE(0, ABSOLUTE) PCONVERGE(0.000001, ABSOLUTE)
/FIXED=Gender TMT CVD time Age BMI F2_V1
TMT*time TMT*F2_V1 F2_V1*time TMT*F2_V1*time | SSTYPE(3)
/METHOD=REML
/PRINT=SOLUTION
/RANDOM=pptID | COVTYPE(VC)
/EMMEANS=TABLES(TMT*time) COMPARE(TMT).