Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

In my experiment in which participants make a yes-no decision, I use two measures of empathy because I predict these to be both of influence. The two questionnaire scales are weakly correlated but do not measure exactly the same. Can I include these two scales in my mixed model ANOVA or will they sort of average each other out and should I, if I want to use both measures of empathy run two separate models?

MIXED decision BY treatment target WITH empathic_concern perspective_taking
 /CRITERIA=CIN(95) MXITER(100) MXSTEP(10) SCORING(1) SINGULAR(0.000000000001) HCONVERGE(0, ABSOLUTE) LCONVERGE(0, ABSOLUTE) PCONVERGE(0.000001, ABSOLUTE) 
  /FIXED=treatment target empathic_concern perspective_taking
treatment * target perspective_taking
treatment * empathic_concern
treatment * perspective_taking
empathic_concern * perspective_taking
treatment * perspective_taking * empathic_concern 
 | SSTYPE(3) 
  /METHOD=ML 
  /PRINT=CORB DESCRIPTIVES  SOLUTION 
  /RANDOM=INTERCEPT | SUBJECT(id) COVTYPE(VC) 
  /EMMEANS=TABLES(OVERALL). 
share|improve this question

1 Answer

Whether you should include correlated independent variables is really a question about collinearty. In SAS (which it looks like you are using) you can check for collinearity in PROC REG with the COLLIN option. For this purpose, it is OK to use REG even here.

If the highest condition index is over 30, it is often thought to be problematic. In that case, you would look at the proportion of variance explained by the collinearity with that condition index and see where the problem was.

(After Andrea's comment, and a little more coffee, it's clear this isn't SAS code)

share|improve this answer
1  
It looks more like SPSS code to me – andrea Apr 13 '12 at 11:05
Looking more closely, I think @andrea is right. SAS would have PROC MIXED, not just MIXED, and there are some other differences. But I don't know SPSS and I don't know how to check collinearity there. – Peter Flom Apr 13 '12 at 11:07
Thank you for your reply. I found a way to check for collinearty on the following website: ats.ucla.edu/stat/spss/webbooks/reg/chapter2/spssreg2.htm regression /statistics=defaults tol collin /dependent decision /method=enter empathic_concern perspective_taking. – user9203 Apr 20 '12 at 8:38
I forgot to mention that my dependent variable is categorical (a yes-no decision). Does my syntax still look OK? – user9203 Apr 26 '12 at 7:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.