Title: | Marginalized Count Regression Models |
---|---|
Description: | Implementation of marginalized models for zero-inflated count data. This package provides a tool to implement an estimation algorithm for the marginalized count models, which directly makes inference on the effect of each covariate on the marginal mean of the outcome. The method involves the marginalized zero-inflated Poisson model described in Long et al. (2014) <doi:10.1002/sim.6293>. |
Authors: | Zhengyang Zhou [aut, cre] Dateng Li [aut] David Huh [aut] Eun-Young Mun [aut] |
Maintainer: | Zhengyang Zhou <[email protected]> |
License: | GPL-3 |
Version: | 1.0.0 |
Built: | 2024-11-23 06:33:25 UTC |
Source: | CRAN |
A data set from White et al. (2008), which is also described in Mun et al. (2015, 2022)
data(dat.pfi)
data(dat.pfi)
The data fram contains 194 rows and 5 columns:
the number of standard alcohol drinks consumed at baseline
1: received personalized feedback interventions (PFI); 0: did not receive PFI
1: first-year college student; 0: otherwise
1: white; 0: non-white
the number of standard alcohol drinks consumed at post-intervention; the response variable
Mun, E.-Y., Zhou, Z., Huh, D., Tan, L., Li, D., Tanner-Smith, E. E., Walters, S. T., & Larimer, M.E. (2022). Brief alcohol interventions are effective through six months: Findings from marginalized zero-inflated Poisson and negative binomial models in a two-step IPD meta-analysis. Prevention Science. (under review)
Mun, E. Y., De La Torre, J., Atkins, D. C., White, H. R., Ray, A. E., Kim, S. Y., ... & The Project INTEGRATE Team. (2015). Project INTEGRATE: An integrative study of brief alcohol interventions for college students. Psychology of Addictive Behaviors, 29(1), 34-48.
White, H. R., Mun, E.-Y., & Morgan, T. J. (2008). Do brief personalized feedback interventions work for mandated students or is it just getting caught that works? Psychology of Addictive Behaviors, 22 (1), 107–116. https://doi.org/10.1037/0893-164X.22.1.107.
Function to estimate a marginalized zero-inflated Poisson model
mzip(formula, data)
mzip(formula, data)
formula |
an object of class " |
data |
a data frame containing variables in the model. |
Function returns an object of class "mle2
" from bbmle R package. Apply summary
function to the resulting object from the function to obtain more estimation information.
Suffix _zero
corresponds to the parameters associated with the structrual zero rate part of a model.
Suffix _mean
corresponds to the parameters associated with the overall mean, which evaluate the effects of covariates on the overall mean.
Long, D. L., Preisser, J. S., Herring, A. H., & Golin, C. E. (2014). A marginalized zero‐inflated Poisson regression model with overall exposure effects. Statistics in Medicine, 33(29), 5151-5165.
head(dat.pfi) #Fit a marginalized zero-inflated Poisson model res = mzip(formula = y ~ m0 + int_PF + year_new + race_new, data = dat.pfi) #Obtain estimation results bbmle::summary(res)
head(dat.pfi) #Fit a marginalized zero-inflated Poisson model res = mzip(formula = y ~ m0 + int_PF + year_new + race_new, data = dat.pfi) #Obtain estimation results bbmle::summary(res)