cdf | R Documentation |
Generic function for computing probabilities from distribution objects based on the cumulative distribution function (CDF).
cdf(d, x, drop = TRUE, ...)
d |
An object. The package provides methods for distribution
objects such as those from |
x |
A vector of elements whose cumulative probabilities you would
like to determine given the distribution |
drop |
logical. Should the result be simplified to a vector if possible? |
... |
Arguments passed to methods. Unevaluated arguments will generate a warning to catch mispellings or other possible errors. |
Probabilities corresponding to the vector x
.
## distribution object
X <- Normal()
## probabilities from CDF
cdf(X, c(1, 2, 3, 4, 5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.