Two-parameter Gamma distribution with scale \(\beta\)
and shape \(\alpha\). The distribution is supported on
\(x > 0\) and is widely used for modelling positively skewed
variables such as precipitation amounts. Density, distribution,
quantile, and random generation functions are provided via base R
dgamma. Fitting is performed via closed-form
L-moments through pelgam.
The probability density function is: $$f(x) = \frac{1}{\beta^\alpha \Gamma(\alpha)} x^{\alpha-1} \exp\left(-\frac{x}{\beta}\right), \quad x > 0$$ where:
\(\beta\) — scale parameter (
scale)\(\alpha\) — shape parameter (
shape)