Class KSTest
- java.lang.Object
-
- smile.stat.hypothesis.KSTest
-
public class KSTest extends java.lang.ObjectThe Kolmogorov-Smirnov test (K-S test) is a form of minimum distance estimation used as a non-parametric test of equality of one-dimensional probability distributions. K-S test is used to compare a sample with a reference probability distribution (one-sample K-S test), or to compare two samples (two-sample K-S test). The Kolmogorov-Smirnov statistic quantifies a distance between the empirical distribution function of the sample and the cumulative distribution function of the reference distribution, or between the empirical distribution functions of two samples. The null distribution of this statistic is calculated under the null hypothesis that the samples are drawn from the same distribution (in the two-sample case) or that the sample is drawn from the reference distribution (in the one-sample case). In each case, the distributions considered under the null hypothesis are continuous distributions but are otherwise unrestricted.The two-sample KS test is one of the most useful and general non-parametric methods for comparing two samples, as it is sensitive to differences in both location and shape of the empirical cumulative distribution functions of the two samples.
The Kolmogorov-Smirnov test can be modified to serve goodness of fit test. In the special case of testing for normality of the distribution, samples are standardized and compared with a standard normal distribution. This is equivalent to setting the mean and variance of the reference distribution equal to the sample estimates, and it is known that using the sample to modify the null hypothesis reduces the power of a test. Correcting for this bias leads to the Lilliefors test. However, even Lilliefors' modification is less powerful than the Shapiro-Wilk test or Anderson-Darling test for testing normality.
-
-
Field Summary
Fields Modifier and Type Field and Description doubledKolmogorov-Smirnov statisticdoublepvalueP-value
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static KSTesttest(double[] x, Distribution dist)The one-sample KS test for the null hypothesis that the data set x is drawn from the given distribution.static KSTesttest(double[] x, double[] y)The two-sample KS test for the null hypothesis that the data sets are drawn from the same distribution.
-
-
-
Method Detail
-
test
public static KSTest test(double[] x, Distribution dist)
The one-sample KS test for the null hypothesis that the data set x is drawn from the given distribution. Small values of p-value show that the cumulative distribution function of x is significantly different from the given distribution. The array x is modified by being sorted into ascending order.
-
test
public static KSTest test(double[] x, double[] y)
The two-sample KS test for the null hypothesis that the data sets are drawn from the same distribution. Small values of p-value show that the cumulative distribution function of x is significantly different from that of y. The arrays x and y are modified by being sorted into ascending order.
-
-
DataMelt 3.0 © DataMelt by jWork.ORG