当我用我的数据拟合 lmer 模型时,没有警告消息。但是当我尝试构建置信区间时confint
,它会显示以下警告消息:
Warning messages:
1: In FUN(X[[i]], ...) : non-monotonic profile
2: In nextpar(mat, cc, i, delta, lowcut, upcut) :
Last two rows have identical or NA .zeta values: using minstep
3: In FUN(X[[i]], ...) : non-monotonic profile
有什么方法可以克服警告信息,即是否有任何参数(选项)可以消除问题?我使用了这个论点control=lmerControl(optCtrl=list(maxfun=20000))
:
fit <- lmer(Y~X+Z+X:Z+(X||group),data=dat,control=lmerControl(optCtrl=list(maxfun=20000)))