I'm analysing reaction time data using mixed-effect modelling in R. Data comes from 2 types of participant groups: native speakers and non-native speakers. For the non-natives, I have proficiency scores (estimating their mastery of English). The proficiency of native speakers is irrelevant, and coded as NA. Does this mean that lmer will consider proficiency as a factor only for non-native speakers?
'data.frame': 8373 obs. of 17 variables:
$Subject : Factor w/ 21 levels
$L1 : Factor w/ 3 levels "English","German",..:
$Proficiency : Factor w/ 12 levels:"0","0.6","0.61",..: 8 8 8 8 8 8 8 8 8 8 ...
$Target : Factor w/ 243 levels
$Relation : Factor w/ 4 levels
$Word.Order : Factor w/ 2 levels "HeadMod*","ModHead"
$Priming : Factor w/ 2 levels "PrHead","PrMod"
$Trial : Factor w/ 481 levels
$Target.RTinv : num
I'm concerned that when I add Proficiency to my model, the AIC and BIC become negative. Is this something to be concerned about?
Models:
dat.lmer5: -1000 * Target.RTinv ~ (1 | Subject) + (1 | Target) + L1 + Word.Order + Priming
dat.lmer8: -1000 * Target.RTinv ~ (1 | Subject) + (1 | Target) + L1 + Word.Order + Priming + Proficiency
Df AIC BIC logLik Chisq Chi Df Pr(>Chisq)
dat.lmer5 8 1859.68 1915.92 -921.84
dat.lmer8 17 -438.62 -329.59 236.31 2316.3 9 < 2.2e-16 ***
strof your data and the call tolmer? However, from your description I have a wild guesses: Yes,lmeronly uses proficiency scores when available. – Henrik Apr 24 '12 at 10:37