Nothing
#' Zero-inflated beta distribution
#'
#' Density, distribution function, and random generation for
#' the zero-inflated beta distribution.
#'
#' @details
#' This implementation allows for automatic differentiation with \code{RTMB}.
#'
#' @param x,q vector of quantiles
#' @param n number of random values to return.
#' @param shape1,shape2 non-negative shape parameters of the beta distribution
#' @param zeroprob zero-inflation probability between 0 and 1.
#' @param log,log.p logical; if \code{TRUE}, probabilities/ densities \eqn{p} are returned as \eqn{\log(p)}.
#' @param lower.tail logical; if \code{TRUE}, probabilities are \eqn{P[X \le x]}, otherwise, \eqn{P[X > x]}.
#'
#' @return
#' \code{dzibeta} gives the density, \code{pzibeta} gives the distribution function, and \code{rzibeta} generates random deviates.
#'
#' @examples
#' set.seed(123)
#' x <- rzibeta(1, 2, 2, 0.5)
#' d <- dzibeta(x, 2, 2, 0.5)
#' p <- pzibeta(x, 2, 2, 0.5)
#' @name zibeta
NULL
#' @rdname zibeta
#' @export
#' @importFrom RTMB dbeta
dzibeta <- function(x, shape1, shape2, zeroprob = 0, log = FALSE) {
if(!ad_context()) {
args <- as.list(environment())
simulation_check(args) # informative error message if likelihood in wrong order
# shapes positive
if (any(shape1 <= 0)) stop("shape1 must be positive.")
if (any(shape2 <= 0)) stop("shape2 must be positive.")
# ensure zeroprob in [0,1]
if (any(zeroprob < 0 | zeroprob > 1)) stop("zeroprob must be in [0,1]")
# ensure x in [0,1)
# if (any(x < 0 | x >= 1)) stop("x must be in the interval [0, 1).")
}
# potentially escape to RNG or CDF
if(inherits(x, "simref")) {
return(dGenericSim("dzibeta", x=x, shape1=shape1, shape2=shape2, zeroprob=zeroprob, log=log))
}
if(inherits(x, "osa")) {
return(dGenericOSA("dzibeta", x=x, shape1=shape1, shape2=shape2, zeroprob=zeroprob, log=log))
}
# # not differentiable in x
# logdens <- numeric(length(x))
# zero_idx <- (x == 0)
#
# # Zero inflation part
# logdens[zero_idx] <- log(zeroprob)
# logdens[!zero_idx] <- log(1 - zeroprob) +
# RTMB::dbeta(x[!zero_idx], shape1 = shape1, shape2 = shape2, log = TRUE)
logdens <- dbeta(x, shape1 = shape1, shape2 = shape2, log = TRUE, eps = .Machine$double.xmin)
logdens <- log_zi(x, logdens, zeroprob)
# making sure x == 1 evaluates to -Inf
logdens <- logdens + log(1-iszero(x-1))
if (log) return(logdens)
return(exp(logdens))
}
#' @rdname zibeta
#' @export
#' @importFrom RTMB pbeta
pzibeta <- function(q, shape1, shape2, zeroprob = 0, lower.tail = TRUE, log.p = FALSE) {
if(!ad_context()) {
# shapes positive
if (any(shape1 <= 0)) stop("shape1 must be positive.")
if (any(shape2 <= 0)) stop("shape2 must be positive.")
# ensure zeroprob in [0,1]
if (any(zeroprob < 0 | zeroprob > 1)) stop("zeroprob must be in [0,1]")
# ensure x in [0,1)
# if (any(x < 0 | x >= 1)) stop("x must be in the interval [0, 1).")
}
# s1 <- 2 * sign(q) - 1 # gives -3 for q < 0, -1 for q == 0, and 1 for q > 0
# s2 <- sign(3 + s1) # only zero or 1
# iszero <- 0.5 * (1-s1) * s2
# ispos <- 0.5 * (1+s1) * s2
p <- iszero(q) * zeroprob +
ispos_strict(q) * (zeroprob + (1 - zeroprob) * RTMB::pbeta(q, shape1, shape2))
if(!lower.tail) p <- 1 - p
if(log.p) p <- log(p)
return(p)
}
#' @rdname zibeta
#' @export
#' @importFrom stats rbeta
rzibeta <- function(n, shape1, shape2, zeroprob = 0) {
# shapes positive
if (any(shape1 <= 0)) stop("shape1 must be positive.")
if (any(shape2 <= 0)) stop("shape2 must be positive.")
# ensure zeroprob in [0,1]
if (any(zeroprob < 0 | zeroprob > 1)) stop("zeroprob must be in [0,1]")
u <- runif(n)
res <- rep(0, n)
is_zero <- u < zeroprob
res[!is_zero] <- rbeta(sum(!is_zero), shape1, shape2)
return(res)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.