Get distribution functions

distfuncs(dist = "norm")

Arguments

dist

The target distribution function (e.g., norm, binom, gamma, truncnorm, likert). If the distribution isn't definited in the packages stats, truncnorm, or faux, use the format "package::dist".

Value

a list with the r and q functions

Examples

qfunc <- distfuncs("norm")$q # returns qnorm
p <- seq(0.1, 0.9, .1)
qfunc(p) == qnorm(p)
#> [1] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE

rfunc <- distfuncs("norm")$r # returns rnorm
rfunc(n = 10, mean = 100, sd = 10)
#>  [1] 102.61409 102.21111 102.08824 113.15769 106.79007 107.35264  92.43581
#>  [8] 109.52674 104.20625 105.06445