当使用confint(m1)
计算轮廓置信区间时m1
是glmer()
模型,顶部有一个术语(或几个)标记为.sig01, .sig02
,我找不到任何解释这些含义的文档。
您可能没有找到'merMod'
的confint
类方法的文档。在?lme4::confint.merMod
中,可以在以下参数中阅读以下内容:
oldNames
:(逻辑)使用旧式名称来表示方差 - 协方差参数,例如:".sig01"
,而不是像"sd_(Intercept)|Subject"
这样更新(更具信息性)的名字? (请参阅配置文件的signames参数)。
oldNames
的默认选项是TRUE
。将它设置为FALSE
将为您提供更清晰的输出。
例
library(lme4)
(gm1 <- glmer(cbind(incidence, size - incidence) ~ period + (1 | herd),
data = cbpp, family = binomial))
confint(gm1, oldNames=FALSE)
# 2.5 % 97.5 %
# sd_(Intercept)|herd 0.3460732 1.0999743
# (Intercept) -1.9012119 -0.9477540
# period2 -1.6167830 -0.4077632
# period3 -1.8010241 -0.5115362
# period4 -2.5007502 -0.8007554