ecdf_fun | R Documentation |
eCDF with confidence intervals
ecdf_fun(x, CI = TRUE, CI.interval = 0.95)
x |
numeric vector of the observations for ecdf; for the methods, an object inheriting from class "ecdf". |
CI |
If TRUE CDF confidence intervals will be calculated; default is set to TRUE. |
CI.interval |
Confidence interval; default is set to 0.95 |
Compute an empirical cumulative distribution function, returns a data frame with value and proporiton. Code based on base eCDF function.
set.seed(12)
test<-rnorm(100)
ecdf_fun(test)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.