distr (version 1.3)

Gamma-class: Class "Gamma"

Description

The Gamma distribution with parameters shape $=\alpha$, by default = 1, and scale $=\sigma$, by default = 1, has density $$d(x)= \frac{1}{{\sigma}^{\alpha}\Gamma(\alpha)} {x}^{\alpha-1} e^{-x/\sigma}$$ for $x > 0$, $\alpha > 0$ and $\sigma > 0$. The mean and variance are $E(X) = \alpha\sigma$ and $Var(X) = \alpha\sigma^2$. C.f. rgamma

Arguments

Objects from the Class

Objects can be created by calls of the form Gamma(scale, shape). This object is a gamma distribution.

Extends

Class "AbscontDistribution", directly. Class "UnivariateDistribution", by class "AbscontDistribution". Class "Distribution", by class "AbscontDistribution".

See Also

GammaParameter-class AbscontDistribution-class Reals-class rgamma

Examples

Run this code
G=Gamma(scale=1,shape=1) # G is a gamma distribution with scale=1 and shape=1.
r(G)(1) # one random number generated from this distribution, e.g. 0.1304441
d(G)(1) # Density of this distribution is 0.3678794 for x=1.
p(G)(1) # Probability that x<1 is 0.6321206.
q(G)(.1) # Probability that x<0.1053605 is 0.1.
scale(G) # scale of this distribution is 1.
scale(G)=2 # scale of this distribution is now 2.

Run the code above in your browser using DataCamp Workspace