When is it appropriate to use a Type I versus Type II negative binomial distribution in a zero-inflated negative binomial distribution?
I've found a Similar question, but without an answer I can comprehend or determine if it relates to zero-inflated negative binomial distributions
In my dataset using R code, I have determined using AIC values that the zero-inflated negative binomial (ZINB) distribution provides the best fit compared with other distribution models.
Using the R package glmmTMBi have specified ZINB models with both Type I and Type II:
library(glmmTMB);library(MuMIn)
m1 <- glmmTMB(dv ~ iv1 + iv2 + iv2,ziformula=~.,data=df,family=nbinom1)
m2 <- glmmTMB(dv ~ iv1 + iv2 + iv2,ziformula=~.,data=df,family=nbinom2)
When testing the models' AIC values, the model with Type II provides a better fit
AICc(m1,m2)
df AICc
m1 9 528.3359
m2 9 527.7481
When using the zeroinfl function from the pscl
zm2 <- zeroinfl(dv ~ iv1 + iv2 + iv2,data=df,dist="negbin")
> AICc(m2,zm2)
df AICc
m2 9 527.7481
zm2 9 527.7481
It yields the same AIC value as Type 2 NB (and the estimtes and p-values are nearly identical), So it seems that Type 2 is assumed in the zeroinfl function.
My data set models the use of drugs (as the dv) over the past 30 days.
Is it appropriate to use a Type II negative binomial distribution and why?. Is it reasonable to justify this decision with AIC values?