提问人:seboe 提问时间:8/12/2023 最后编辑:Ben Bolkerseboe 更新时间:8/12/2023 访问量:15
混合线性模型未能在 R 中收敛
Mixed linear model failed to converge in R
问:
我在 R 中进行了混合线性模型,过去,一切都很顺利。但是现在,有一个奇怪的警告消息,我不知道如何解决它。也许你已经知道我接下来应该做什么,提前致谢!
这是警告消息和我的代码:
警告消息:
在 checkConv(attr(opt, “derivs”), opt$par, ctrl = control$checkConv, : 模型无法与 max|grad|= 4.40085 (tol = 0.002, 分量 1)
这是我的代码:
cc_full.mod <- glmer(Ergebnis ~ 1 + Risikodarstellung*Icon*Position + (1 |id),
data = daten.long, family = binomial,
control=glmerControl(optimizer="bobyqa"))
allFit(cc_full.mod)
答: 暂无答案
评论
?troubleshooting
?convergence
lme4