pymer4
pymer4 copied to clipboard
Access parameter `nAGQ` of `glmer`
I need to set the parameter nAGQ
of glmer
. It sets the number of points used to estimate the integral giving the likelihood. I think I will manage to do it manually, but it would be nice to have a parameter in Lmer.fit
.
Thanks I can look into adding this in the future
https://www.rdocumentation.org/packages/lme4/versions/1.1-27.1/topics/glmer
I modified Lmer.fit
to pass **kwargs
to lmer.glmer
. It works since nAGQ
is just an integer.