gamma_params {dampack}R Documentation

Calculate shape and scale (or rate) parameters of a gamma distribution.

Description

Function to calculate the shape, \alpha, and scale, \theta, (or rate, \beta) parameters of a gamma distribution based on the method of moments (MoM) using the mean \mu and standard deviation \sigma of the random variable of interest.

Usage

gamma_params(mu, sigma, scale = TRUE)

Arguments

mu

scalar with the mean of the random variable.

sigma

scalar with the standard deviation of the random variable.

scale

logical variable indicating scale parameterization of the gamma distribution (Default is TRUE). If FALSE, rate parameterization is retrieved

Value

A list contianing the following:

shape Shape parameter of gamma distribution

scale Scale parameter of gamma distribution (If scale=TRUE)

rate Rate parameter of gamma distribution (If scale=FALSE)

Details

Based on method of moments. If \mu is the mean and \sigma is the standard deviation of the random variable, then the the shape, \alpha, scale, \theta, and rate, \beta, parameters are computed as follows

\alpha=\frac{\mu^2}{\sigma^2},

\theta = \frac{\sigma^2}{\mu}

and

\beta = \frac{\mu}{\sigma^2}

References

Examples

mu    <- 2
sigma <- 1
# Scale specification
gamma_params(mu, sigma)
# Rate specification
gamma_params(mu, sigma, scale = FALSE)

[Package dampack version 1.0.1 Index]