0
我注意到,當使用包含因子類型預測變量的lme4
包中的lmer
函數指定模型時,後綴指示預測器是因子水平的字符串,如這裏用於治療的情況下:混合()與lmer()固定效果因子輸出的輸出:數字與字符
library(afex)
data(obk.long)
m1 <- lmer(value ~ treatment + (1|id), obk.long)
summary(m1)
Fixed effects:
Estimate Std. Error t value
(Intercept) 4.200 0.654 6.43
treatmentA 2.050 0.980 2.09
treatmentB 1.800 0.856 2.10
然而,在afex
包使用mixed
功能時,後綴是數字:
m2 <- mixed(value ~ treatment + (1|id), obk.long)
summary(m2$full.model) # this should be the same as the lmer output... it's er, not
Fixed effects:
Estimate Std. Error t value
(Intercept) 5.483 0.375 14.62
treatment1 -1.283 0.532 -2.41
treatment2 0.767 0.565 1.36
有誰知道是什麼導致了預測變量標籤級別後綴的差異和/或固定效應的差異?
謝謝,這回答了我的兩個問題之一! – luser
其實,你回答了**兩個**問題,接受:Henrik的更詳細的答案可以看到[這裏](https://github.com/singmann/afex/issues/4) – luser
請避免交叉發帖未來,因爲它會導致重複工作。根據你後來的帖子,我認爲一個比較一般的指南可能是有用的,比如http://www.ats.ucla.edu/stat/r/library/contrast_coding.htm – alexforrence