Approximate Critical Values for Kolmogorov-Smirnov's D
Approximate Critical Values for Kolmogorov-Smirnov's D
Computes the critical value for Kolmogorov-Smirnov's Dn, for sample sizes n>=10 and confidence level 95%.
Details
Based on tables values given in the reference below. For n<=80 uses interpolations from exact values, elsewhere uses asymptotic approximation.
KSd(n)
Arguments
n: the sample size, n >= 10.
Returns
The critical value for D (two-sided) for significance level 0.05 (or confidence level 95%).
References
Peter J. Bickel and Kjell A. Doksum (1977), Mathematical Statistics: Basic Ideas and Selected Topics. Holden Day. Section 9.6 and table IX.
Author(s)
Kjetil Halvorsen and Martin Maechler
See Also
Is used from ecdf.ksCI.
Examples
KSd(90)KSd(1:9)# now worksop <- par(mfrow=c(2,1)) plot(KSd,10,150)# nice abline(v = c(75,85), col ="gray") plot(KSd,79,81, n =1001)# *very* tiny discontinuity at 80par(op)