Gamma distribution {dprop}R Documentation

Compute the distributional properties of the gamma distribution

Description

Compute the first four ordinary moments, central moments, mean, and variance, Pearson's coefficient of skewness and kurtosis, coefficient of variation, median and quartile deviation based on the selected parametric values of the gamma distribution.

Usage

d_gamma(alpha, beta)

Arguments

alpha

The strictly positive parameter of the gamma distribution (\alpha > 0).

beta

The strictly positive parameter of the gamma distribution (\beta > 0).

Details

The following is the probability density function of the gamma distribution:

f(x)=\frac{\beta^{\alpha}}{\Gamma(\alpha)}x^{\alpha-1}e^{-\beta x},

where x > 0, \alpha > 0 and \beta > 0.

Value

d_gamma the first four ordinary moments, central moments, mean, and variance, Pearson's coefficient of skewness and kurtosis, coefficient of variation, median and quartile deviation based on the selected parametric values of the gamma distribution.

Author(s)

Muhammad Imran.

R implementation and documentation: Muhammad Imran imranshakoor84@yahoo.com.

References

Burgin, T. A. (1975). The gamma distribution and inventory control. Journal of the Operational Research Society, 26(3), 507-525.

See Also

d_wei, d_naka

Examples

d_gamma(2,2)

[Package dprop version 0.1.0 Index]