poisson_distribution: Poisson Distribution Functions
Description
Functions to compute the probability density function, cumulative distribution function, and quantile function for the Poisson distribution.
Usage
poisson_pdf(x, lambda = 1)
poisson_lpdf(x, lambda = 1)
poisson_cdf(x, lambda = 1)
poisson_lcdf(x, lambda = 1)
poisson_quantile(p, lambda = 1)
Value
A single numeric value with the computed probability density, log-probability density, cumulative distribution, log-cumulative distribution, or quantile depending on the function called.