I just updated lme4 to version 1.0-4, and when I ran lmer () my mixed effects model, which used to converge, now prints this warning:
Warning message: In (function (fn, par, lower = rep.int(-Inf, n), upper = rep.int(Inf, : failure to converge in 10000 evaluations
So, I would like to try to increase the number of iterations in order to check if I can fix this. (I must say, I have no idea what causes the warning, as the first part of the message sounds a bit opaque). In any case, I read in the documentation that I should now use lmerControl () , but I could not implement it. Can someone give me a concrete example of how you will do this for specificity? (Help file does not help). Here is my model:
m <- lmer(RT ~ Factor1*Factor2 + (0+Factor1+Factor2|Subject) + (1|Subject) + (1|Item) + (0+Factor1+Factor2|Item), data= data)
Thank you so much!
iteration r lme4 lmer
Sol
source share