Functions to compute the probability density function, cumulative distribution function, and quantile function for the Gamma distribution.
Usage
gamma_pdf(x, shape, scale)
gamma_lpdf(x, shape, scale)
gamma_cdf(x, shape, scale)
gamma_lcdf(x, shape, scale)
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.