| ecdf.ksCI {sfsmisc} | R Documentation |
Plots the empirical distribution function for univariate data, together with upper and lower simultaneous 95% confidence curves.
ecdf.ksCI(x, main = NULL, sub = NULL, xlab = deparse(substitute(x)),
ci.col = "red", ...)
x |
x numerical vector of observations. |
main,sub,xlab |
arguments passed to title. |
ci.col |
color for confidence interval lines. |
... |
... arguments given to plot.stepfun. |
Nothing. Used for its side effect, to produce a plot.
Presently, will only work if length(x) > 9.
Kjetil Halvorsen
Bickel and Doksum, see KSd.
ecdf and plot.stepfun in package
stepfun.
ecdf.ksCI( rchisq(50,3) )