I am currently using SPSS 15.0.
My study has one dependent variable (quantitative),
one categorical indipendent variable at level 1, individual(gender, value are 0 and 1)
one categorical indipendent variable at level 2, groups (nature of team, value can be 0,1,2).
Each group is composed by six individuals. My hypotheses ISthat, according to the nature of group, male and females scores different values of the dependent variable (in some groups men are better than women, in other group women are better than men). Since observation are dependant (Intra Class Correlation is about 30%), I have to use MultiLevel models for a study.
I am not sure of the correct form of the syntax for my models (which should take into account the interaction between team nature and gender).
I used this code:
Code:
MIXED outcome BY gender WITH condition
/PRINT solution testcov
/METHOD = REML
/FIXED = intercept gender condition gender*condition
/RANDOM=intercept | SUBJECT(group)
The outcomes are strange because if I run the simpler model
Code:
MIXED outcome WITH condition
/PRINT solution testcov
/METHOD = REML
/FIXED = intercept condition
/RANDOM=intercept condition | SUBJECT(group)
condition factor is significative, while in the most complex model it is not.
Thank you in advance for any suggestion or correction you can provide me.