Dear all,
My data has three groups: A, B, C. I put it in mixedmirt, but the fixed effects only include groupB and groupC, why there is no groupA? if change the data, groupA dispaly, I am very confused, hope for your help!
the script as follows:
Y <- DATA[,7:12]
group <- DATA[,5]
covdata <- data.frame(group)
rmod0 <- mirt(Y, 1, itemtype = 'graded')
summary(rmod0)
Theta <- fscores(rmod0, full.scores=TRUE, scores.only=TRUE)
model<-mirt.model('Theta=1:6')
rmod1 <- mixedmirt(Y, covdata, model, fixed = ~ 0 + group)
summary(rmod1)
the result:
--------------
FIXED EFFECTS:
Estimate Std.Error z.value
groupB -0.154 0.124 -1.241
groupC 0.164 0.111 1.486
--------------
thanks,
Heidi