Skip to content
Prev 18368 / 20628 Next

Zero-truncated Poisson distribution in glmmTMB

The poilogMLE function is fitting a Poisson-lognormal which is equivalent to a Poisson with an observation level random effect (OLRE) to account for overdispersion. So to make the models similar, you probably need to add
df_01$obs = row.names(df_01)
and then add (1|obs) to your model formulas. 
  
Here is a reference about OLREs https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4194460/ <https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4194460/>

cheers,
Mollie