R 的 GLMER 输出,.sig01、.sig02、.sig03 的含义

GLMER Output from R, meaning of .sig01, .sig02, .sig03

当使用 confint(m1) 计算配置文件置信区间时,其中 m1 是一个 glmer() 模型,顶部有一个(或几个)项被标记为 .sig01, .sig02 ,我找不到任何解释这些含义的文档。

您可能没有找到 confint'merMod' class 方法的文档。在?lme4::confint.merMod中可以在参数中读取以下内容:

oldNames: (logical) use old-style names for variance-covariance parameters, e.g. ".sig01", rather than newer (more informative) names such as "sd_(Intercept)|Subject"? (See signames argument to profile).

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