Skip to content
Prev 15807 / 20628 Next

Main effects for zero inflation poisson regression

I think it would be worth posting this as an issue on the glmmTMB
issues list here: https://github.com/glmmtmb/glmmTMB/issues .  (You
might be able to attach a CSV file there: you can't send CSV
attachments to this mailing list.)

I'm not surprised that car::Anova doesn't work (I've still been
working on that one: see
https://github.com/glmmTMB/glmmTMB/blob/master/glmmTMB/inst/other_methods/car_methods.R
). On the other hand, I am surprised that the standard two-model
anova() method doesn't work for you, e.g.

 g1 <- glmmTMB(Reaction~Days+(Days|Subject),lme4::sleepstudy)
 g0 <- update(g1,.~.-Days)
 anova(g0,g1)

On Sat, Sep 23, 2017 at 12:48 PM, Francesco Romano
<francescobryanromano at gmail.com> wrote: