distfuncs | R Documentation |
Get distribution functions
distfuncs(dist = "norm")
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". |
a list with the r and q functions
qfunc <- distfuncs("norm")$q # returns qnorm
p <- seq(0.1, 0.9, .1)
qfunc(p) == qnorm(p)
rfunc <- distfuncs("norm")$r # returns rnorm
rfunc(n = 10, mean = 100, sd = 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.