Skip to content
Prev 17669 / 20628 Next

False Convergence warning

Some quick points.

* the nlminb "false convergence" error is quite hard to troubleshoot
<https://stackoverflow.com/questions/40039114/r-nlminb-what-does-false-convergence-actually-mean>

* I would normally suggest scaling your variables as a cheap way to
improve robustness, but it looks like your variables are all effectively
binary/scaled anyway?

* the only part of your model that looks unusual/glmmTMB-specific is
dispformula=~0:  I assume you're doing this because otherwise some of
your variance terms are confounded with the residual variance?  You
could try fitting this model in blme::blmer, with the residual std dev
prior fixed to a small non-zero value (the std dev value below is
(.Machine$double.eps)^(0.25)), and see if you get the same results ...

* it should be possible, but isn't presently, to try glmmTMB with an
alternate optimizer (stay tuned: this is available on a development
branch https://github.com/glmmTMB/glmmTMB/tree/mapArgs at the moment ...)
On 2019-05-21 11:07 a.m., Robert Ackerman wrote: