Negative Binomial Distribution Functions
Source:R/negative_binomial_distribution.R
negative_binomial_distribution.Rd
Functions to compute the probability density function, cumulative distribution function, and quantile function for the Negative Binomial distribution.
Usage
negative_binomial_pdf(x, successes, success_fraction)
negative_binomial_lpdf(x, successes, success_fraction)
negative_binomial_cdf(x, successes, success_fraction)
negative_binomial_lcdf(x, successes, success_fraction)
negative_binomial_quantile(p, successes, success_fraction)
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.
See also
Boost Documentation for more details on the mathematical background.