eval_cdf | R Documentation |
Access a distribution's cumulative distribution function (cdf).
eval_cdf(distribution, at)
enframe_cdf(..., at, arg_name = ".arg", fn_prefix = "cdf", sep = "_")
distribution , ... |
A distribution, or possibly multiple
distributions in the case of |
at |
Vector of values to evaluate the cdf at. Must be named when using
in |
arg_name |
For |
fn_prefix |
For |
sep |
When |
The evaluated cdf in vector form (for eval_
) and data frame
or tibble form (for enframe_
).
Other distributional representations:
eval_chf()
,
eval_density()
,
eval_hazard()
,
eval_odds()
,
eval_pmf()
,
eval_quantile()
,
eval_return()
,
eval_survival()
d1 <- dst_unif(0, 4)
d2 <- dst_pois(1.1)
eval_cdf(d1, at = 0:4)
enframe_cdf(d1, at = 0:4)
enframe_cdf(d1, d2, at = 0:4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.