This function obtains moment estimators for the Zero Inflated Bivariate Poisson distribution under the parameterization of Geoffroyminarayana et. al (1993).

moments_estim_ZIBP_Geoffroy(x)

Arguments

x

vector or matrix of quantiles. When x is a matrix, each row is taken to be a quantile and columns correspond to the number of dimensions p.

Value

Returns a vector with \(\hat{\lambda_1}\), \(\hat{\lambda_2}\), \(\hat{\alpha}\) and \(\hat{\psi}\).

References

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.

Author

Freddy Hernandez-Barajas, fhernanb@unal.edu.co

Examples


# Example 1 ---------------------------------------------------------------
# Probability for single values of X1 and X2
dZIBP_Geoffroy(c(0, 0), l1=3, l2=4, l0=1, psi=0.15)
#> Error in dZIBP_Geoffroy(c(0, 0), l1 = 3, l2 = 4, l0 = 1, psi = 0.15): could not find function "dZIBP_Geoffroy"
dZIBP_Geoffroy(c(1, 0), l1=3, l2=4, l0=1, psi=0.15)
#> Error in dZIBP_Geoffroy(c(1, 0), l1 = 3, l2 = 4, l0 = 1, psi = 0.15): could not find function "dZIBP_Geoffroy"
dZIBP_Geoffroy(c(0, 1), l1=3, l2=4, l0=1, psi=0.15)
#> Error in dZIBP_Geoffroy(c(0, 1), l1 = 3, l2 = 4, l0 = 1, psi = 0.15): could not find function "dZIBP_Geoffroy"

# Probability for a matrix the values of X1 and X2
x <- matrix(c(0, 0,
              1, 0,
              0, 1), ncol=2, byrow=TRUE)
x
#>      [,1] [,2]
#> [1,]    0    0
#> [2,]    1    0
#> [3,]    0    1
dZIBP_Geoffroy(x=x, l1=3, l2=4, l0=1, psi=0.15)
#> Error in dZIBP_Geoffroy(x = x, l1 = 3, l2 = 4, l0 = 1, psi = 0.15): could not find function "dZIBP_Geoffroy"

# Checking if the probabilities sum 1
val_x1 <- val_x2 <- 0:50
space <- expand.grid(val_x1, val_x2)
space <- as.matrix(space)

l1 <- 3
l2 <- 4
l0 <- 1.27
psi <- 0.15

probs <- dZIBP_Geoffroy(x=space, l1=l1, l2=l2, l0=l0, psi=psi)
#> Error in dZIBP_Geoffroy(x = space, l1 = l1, l2 = l2, l0 = l0, psi = psi): could not find function "dZIBP_Geoffroy"
sum(probs)
#> Error in eval(expr, envir, enclos): object 'probs' not found

# Example 2 ---------------------------------------------------------------
# Heat map for a ZIBP_Geoffroy

l1 <- 3
l2 <- 4
l0 <- 1.2
psi <- 0.03

X1 <- 0:10
X2 <- 0:10
data <- expand.grid(X1=X1, X2=X2)
data$Prob <- dZIBP_Geoffroy(x=data, l1=l1, l2=l2, l0=l0, psi=psi)
#> Error in dZIBP_Geoffroy(x = data, l1 = l1, l2 = l2, l0 = l0, psi = psi): could not find function "dZIBP_Geoffroy"
data$X1 <- factor(data$X1)
data$X2 <- factor(data$X2)

library(ggplot2)
ggplot(data, aes(X1, X2, fill=Prob)) +
  geom_tile() +
  scale_fill_gradient(low="darkgreen", high="yellow")
#> Error in geom_tile(): Problem while computing aesthetics.
#>  Error occurred in the 1st layer.
#> Caused by error:
#> ! object 'Prob' not found


# Example 3 ---------------------------------------------------------------
# Generating random values and moment estimations

l1 <- 13
l2 <- 8
l0 <- 5
psi <- 0.15

x <- rZIBP_Geoffroy(n=500, l1, l2, l0, psi)
#> Error in rZIBP_Geoffroy(n = 500, l1, l2, l0, psi): could not find function "rZIBP_Geoffroy"
moments_estim_ZIBP_Geoffroy(x)
#> Error in moments_estim_ZIBP_Geoffroy(x): could not find function "moments_estim_ZIBP_Geoffroy"

# Example 4 ---------------------------------------------------------------
# Estimating the parameters using the loglik function

# Loglik function
llZIBP_Geoffroy <- function(param, x) {
  l1 <- param[1]  # param: is the parameter vector
  l2 <- param[2]
  l0 <- param[3]
  psi <- param[4]
  sum(dZIBP_Geoffroy(x=x, l1=l1, l2=l2,
                     l0=l0, psi=psi, log=TRUE))
}

# The known parameters
l1 <- 5
l2 <- 3
psi <- 0.20
l0 <- 1.20

set.seed(12345)
x <- 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"

# To obtain reasonable values for l0
start_param <- moments_estim_ZIBP_Geoffroy(x)
#> Error in moments_estim_ZIBP_Geoffroy(x): could not find function "moments_estim_ZIBP_Geoffroy"
start_param
#> Error in eval(expr, envir, enclos): object 'start_param' not found

# Estimating parameters
res1 <- optim(fn = llZIBP_Geoffroy,
              par = start_param,
              lower = c(0.001, 0.001, 0.001, 0.0001),
              upper = c(  Inf,   Inf,   Inf, 0.9999),
              method = "L-BFGS-B",
              control = list(maxit=100000, fnscale=-1),
              x=x)
#> Error in eval(expr, envir, enclos): object 'start_param' not found

res1
#> Error in eval(expr, envir, enclos): object 'res1' not found