Inverse Gamma Distribution Functions
Source:R/inverse_gamma_distribution.R
inverse_gamma_distribution.Rd
Functions to compute the probability density function, cumulative distribution function, and quantile function for the Inverse Gamma distribution.
Usage
inverse_gamma_pdf(x, shape, scale)
inverse_gamma_lpdf(x, shape, scale)
inverse_gamma_cdf(x, shape, scale)
inverse_gamma_lcdf(x, shape, scale)
inverse_gamma_quantile(p, shape, scale)
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.