This function fit a Zero Inflated Bivariate Poisson model under Geoffroy et. al (2021).
ZIBP_Geoffroy(
l1.fo,
l2.fo,
psi.fo,
data,
initial.values = NULL,
optimizer = "nlminb"
)
a formula object to explain the parameter \(\lambda_1\), the first response \(X_1\) on the left of an ~ operator, and the terms, separated by operators, on the right.
a formula object to explain the parameter \(\lambda_2\), the second response \(X_2\) on the left of an ~ operator, and the terms, separated by operators, on the right.
a formula object to explain the \(\psi\) parameter. An example could be: ~ age + salary
.
a data frame containing the variables occurring in the formula.
a vector with possible initial values for the parameters.
the optimizer to be used: nlminb, optim.
Returns a object with class "ZIBPGeoffroy".
Kouakou, K. J. G., Hili, O., & Dupuy, J. F. (2021). Estimation in the zero-inflated bivariate Poisson model with an application to health-care utilization data. Afrika Statistika, 16(2), 2767-2788.
# Example 1 ---------------------------------------------------------------
# Estimating parameters as a regression model
l1 <- 5
l2 <- 3
psi <- 0.20
l0 <- 1.20
set.seed(12345)
data1 <- rZIBP_Geoffroy(n=500, l1=l1, l2=l2, l0=l0, psi=psi)
#> Error in rZIBP_Geoffroy(n = 500, l1 = l1, l2 = l2, l0 = l0, psi = psi): could not find function "rZIBP_Geoffroy"
data1 <- as.data.frame(data1)
#> Error in eval(expr, envir, enclos): object 'data1' not found
colnames(data1) <- c("y1", "y2")
#> Error: object 'data1' not found
mod <- ZIBP_Geoffroy(l1.fo=y1~1,
l2.fo=y2~1,
psi.fo=~1,
data=data1)
#> Error in ZIBP_Geoffroy(l1.fo = y1 ~ 1, l2.fo = y2 ~ 1, psi.fo = ~1, data = data1): could not find function "ZIBP_Geoffroy"
summary(mod)
#> Error in eval(expr, envir, enclos): object 'mod' not found
c(exp(mod$par[1:3]), mod$par[4])
#> Error in eval(expr, envir, enclos): object 'mod' not found
moments_estim_ZIBP_Geoffroy(data1)
#> Error in moments_estim_ZIBP_Geoffroy(data1): could not find function "moments_estim_ZIBP_Geoffroy"
# Example 2 ---------------------------------------------------------------
# Replicating application from section 5.1 from Geoffroy et. al (2021).
if (FALSE) { # \dontrun{
library(AER)
data("NMES1988")
# To obtain some statistics as in the paper
y1 <- NMES1988$nvisits
y2 <- NMES1988$novisits
cor(y1, y2)
cor.test(y1, y2)
cov(y1, y2)
mean(y1==0 & y2==0)
# Model as in section 5.1 from Geoffroy et. al (2021).
mod3 <- NULL
mod3 <- ZIBP_Geoffroy(l1.fo=nvisits ~health+chronic+age+gender+
married+school+income+medicaid,
l2.fo=novisits~health+chronic+age+gender+
married+school+income+medicaid,
psi.fo=~chronic+gender+school+medicaid,
data=NMES1988)
summary(mod3)
} # }