过去,我曾使用sjPlotsjp.glmer
包中的sjPlot来可视化广义混合效应模型中的不同斜率。但是,使用新软件包,我无法弄清楚如何绘制各个斜率,如图所示(随机)组级别的固定效应概率,位于此处
这是我认为应该允许生成图形的代码。我似乎无法在新版本的sjPlot
.
library(lme4)
library(sjPlot)
data(efc)
# create binary response
efc$hi_qol = 0
efc$hi_qol[efc$quol_5 > mean(efc$quol_5,na.rm=T)] = 1
# prepare group variable
efc$grp = as.factor(efc$e15relat)
# data frame for 2nd fitted model
mydf <- na.omit(data.frame(hi_qol = as.factor(efc$hi_qol),
sex = as.factor(efc$c161sex),
c12hour = as.numeric(efc$c12hour),
neg_c_7 = as.numeric(efc$neg_c_7),
grp = efc$grp))
# fit 2nd model
fit2 <- glmer(hi_qol ~ sex + c12hour + neg_c_7 + (1|grp),
data = mydf,
family = binomial("logit"))
我尝试使用以下代码绘制模型。
plot_model(fit2,type="re")
plot_model(fit2,type="prob")
plot_model(fit2,type="eff")
我认为我可能缺少一个标志,但是在阅读了文档之后,我无法找出那个标志可能是什么。