Hi everyone, I’m working on a statistical analysis to test the effects of various environmental conditions and planting techniques on plant survival in a revegetation project. I’d really appreciate any advice on interpreting my model output and choosing reference levels.
I chose a Generalized Linear Mixed Model (GLMM) because each individual plant is nested within a different sector of the site, and there are plantings in different years (i.e., nesting). The response variable is survival, which follows a binomial distribution. All of my explanatory variables—both fixed and random effects—are categorical:
Model specifications:
I performed model selection using likelihood‐ratio tests (LRT) and then validated with residual simulations using the DHARMa package. After comparing different effect structures and checking residuals, I concluded that a negative‐binomial GLMM (nbinom2) fitted with glmmTMB provides the best fit:
glmmTMB(
Alive ~ Species + Exposure + Species:Ecosystem + Technique:Exposure +
(1 | Monitoring) + (1 | Sector) + offset(logPlantsTotal), family = nbinom2, data = my_data)
(I attached an image of the summary in spanish)
Specific questions:
Any insights or methodological suggestions would be highly appreciated. I also welcome recommendations on best practices for interpreting and presenting results from GLMMs of this kind.