dpqrdist | R Documentation |
Utility function wrapping up the d/p/q/r distribution functions
dpqrdist(dist, type = c("d", "p", "q", "r"), ...)
dist |
a character description of a distribution, for example
|
type |
one of |
... |
additional arguments passed on to underlying distribution function.
Note that one of |
# 3 random draws from N(1,2)
dpqrdist("norm", "r", n = 3, mean = 1, sd = 2)
# These should all be the same
dpqrdist("norm", "d", x = 0) == dnorm(x = 0)
dpqrdist("norm", "p", q = 0, mean = 1, sd = 2) == pnorm(q = 0, mean = 1, sd = 2)
dpqrdist("norm", "q", p = 0.5, mean = 1, sd = 2) == qnorm(p = 0.5, mean = 1, sd = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.