I built a model in r with the lmer function:
lmer(DV ~ IV1 + IV1:IV2 - 1 + (1|Group/Participant)
This was correctly specified and I got the results I expected.
I'm now trying to replicate these results in spss. so far I have:
MIXED DV BY IV1 IV2
/FIXED IV1 IV1*IV2 | NOINT SSTYPE(3)
/METHOD REML
/RANDOM= INTERCEPT | SUBJECT(Group*Participant) COVTYPE(VC)
/PRINT= SOLUTION TESTCOV.
My results are not remotely similar, and I believe it is because of the differences between the :
and *
terms.
How can I replicate IV1 + IV1:IV2
in SPSS?