Alternative optimization algorithms for lmer
问题 The function lmer in the lme4 package uses by default bobyqa from the minqa package as optimization algorithm. According to the following post https://stat.ethz.ch/pipermail/r-sig-mixed-models/2013q1/020075.html, it is possible to use also the other optimization algorirthms in the minqa package How can one use uobyqa or newuoa as optimization algorithm for lmer ? library(lme4) fm1 <- lmer(Reaction ~ Days + (Days | Subject), sleepstudy, control=lmerControl(optimizer="bobyqa")) 回答1: You can't