Density, (cumulative) distribution function and random generation for Gamma distribution.
Examples
density_gamma(shape = 1, scale = 2, x = 1:10)
#> [1] 0.303265330 0.183939721 0.111565080 0.067667642 0.041042499 0.024893534
#> [7] 0.015098692 0.009157819 0.005554498 0.003368973
cdf_gamma(shape = 1, scale = 2, x = 1:10)
#> [1] 0.3934693 0.6321206 0.7768698 0.8646647 0.9179150 0.9502129 0.9698026
#> [8] 0.9816844 0.9888910 0.9932621
random_gamma(shape = 1, scale = 2, n = 10)
#> [1] 4.55983646 0.28621194 2.23796591 4.28756444 1.47319090 2.42965655
#> [7] 0.01202736 0.16015907 0.25919885 1.65992974