Skip to content
Prev 12171 / 20628 Next

Error in Profile likelihood based confidence intervals in glmer()

I should add this to the "troubleshooting" page, but:

* There's in principle no problem at all with profiling models with
multiple random effects (other than that it's likely to be slow)
* The error message indicates that during profiling, the optimizer found
a fitted value that was significantly better (as characterized by the
'devtol' parameter) than the supposed minimum-deviance solution returned
in the first place.  You can boost the 'devtol' parameter (which is
currently set at a conservative 1e-9 ...) if you want to ignore this --
however, the non-monotonic profiles are also warning you that something
may be wonky with the profile.  It should (???) be possible to capture
the new/improved parameters that were found (although I don't know if
this is implemented in profile.merMod; I may have done it for bbmle but
not for lme4).
* the 'slice2D' methods in the bbmle package (see e.g.
http://rpubs.com/bbolker/22607 ) may be useful for exploring the
likelihood surface.
On 14-07-22 11:40 AM, Ravi Varadhan wrote: