Skip to content
Prev 17622 / 20628 Next

Warning message after "unscaling" predictor variable

You could also give a try in GLMMadaptive 
(https://drizopoulos.github.io/GLMMadaptive/) that fits the same model 
using the adaptive Gaussian quadrature instead on the Laplace 
approximation. The equivalent code is:

fm <- mixed_model(sum.50 ~ trtmt_simple + julian, random = ~ 1 | site,
                   data = data, family = zi.negative.binomial(),
                   zi_fixed = ~ 1)
summary(fm)

For more examples check here:

https://drizopoulos.github.io/GLMMadaptive/articles/ZeroInflated_and_TwoPart_Models.html

https://drizopoulos.github.io/GLMMadaptive/articles/Goodness_of_Fit.html

Best,
Dimitris
On 5/7/2019 11:17 PM, Rachael Mady wrote: