dzipois: Zero-inflated Poisson probability density

View source: R/distributions.r

dzipoisR Documentation

Zero-inflated Poisson probability density

Description

Functions for computing density and producing random samples from a zero-inflated Poisson probability distribution.

Usage

dzipois( x , p , lambda , log=FALSE )
rzipois( n , p , lambda )

Arguments

x

Integer values to compute densities or probabilies of

p

Probability of a zero from bernoulli process

lambda

Poisson rate parameter (mean)

log

If TRUE, returns log-probability instead of probability

Details

These functions provide density and random number calculations for zero-inflated Poisson observations. This distribution is defined as a finite mixture of zeros and Poisson values, where p determines the weight of the pure zeros. As such, the probability of a zero is p + (1-p)exp(-lambda). And the probability of a non-zero value x is (1-p)lambda^x exp(-lambda)/x!.

dzipois does its calculations in a way meant to reduce numerical issues with probabilities close to 0 and 1. As a result, it's not very fast.

Author(s)

Richard McElreath


rmcelreath/rethinking documentation built on Sept. 18, 2023, 2:01 p.m.