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] 2.5046309 1.1664859 12.0303786 2.4024761 1.8875513 4.6799874
#> [7] 0.2037212 0.5825519 4.0447183 1.4073465