ecdf.ksCI {sfsmisc} | R Documentation |
Plots the empirical (cumulative) distribution function (ECDF) for
univariate data, together with upper and lower simultaneous 95% confidence curves,
computed via Kolmogorov-Smirnov' D
, see KSd
.
ecdf.ksCI(x, main = NULL, sub = NULL, xlab = deparse(substitute(x)),
ci.col = "red", ...)
x |
|
main , sub , xlab |
arguments passed to |
ci.col |
color for confidence interval lines. |
... |
optional arguments passed to |
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 standard
R.
ecdf.ksCI( rchisq(50,3) )