I have conducted a Mixed linear model in R and in the past, everything went well. But now, there is a weird warning message and I don't know how to fix it. Maybe you have got an idea what I should do next, thanks in advance!
Here is the warning message and my code:
Warning message:
In checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, : Model failed to converge with max|grad| = 4.40085 (tol = 0.002, component 1)
And this is my code:
cc_full.mod <- glmer(Ergebnis ~ 1 + Risikodarstellung*Icon*Position + (1 |id),
data = daten.long, family = binomial,
control=glmerControl(optimizer="bobyqa"))
allFit(cc_full.mod)