I have 77 subjects, 1 continuous DV (activation), 2 continuous IVs (score1 and score2) and 1 categorical IV (condition) with 2 levels. Each subject undergoes both conditions.
I code the model as:
MIXED activation BY condition WITH score1 score2
/CRITERIA=CIN(95) MXITER(1000) MXSTEP(10) SCORING(1) SINGULAR(0.000000000001) HCONVERGE(0,
ABSOLUTE) LCONVERGE(0, ABSOLUTE) PCONVERGE(0.000001, ABSOLUTE)
/FIXED=condition score1 score2 condition*score1 condition*score2 | SSTYPE(3)
/METHOD=ML
/PRINT=DESCRIPTIVES G SOLUTION TESTCOV
/REPEATED=condition | SUBJECT(subject) COVTYPE(ID)
/EMMEANS=TABLES(condition) COMPARE ADJ(BONFERRONI)
Which commands should I use to investigate the interaction between condition(0, 1) and score1 (continuous)?