Density, (cumulative) distribution function and random generation for chi-squared distribution.
Value
numeric vector
The functions density_XXX and cdf_t return numeric vectors of same length as x.
The functions random_XXX return random number (numeric vectors) of length n.
Examples
density_chi2(df = 3, 1:10)
#> [1] 0.241970725 0.207553749 0.154180330 0.107981933 0.073224913 0.048652173
#> [7] 0.031873400 0.020666985 0.013295545 0.008500367
cdf_chi2(df = 3, 1:10)
#> [1] 0.1987480 0.4275933 0.6083748 0.7385359 0.8282029 0.8883898 0.9281022
#> [8] 0.9539883 0.9707091 0.9814339
random_chi2(df = 3, n = 10)
#> [1] 0.9760853 5.0098990 0.4309236 0.9837206 4.7239143 4.8039505 0.6619242
#> [8] 1.8344357 2.7913621 2.1465315