Class TwoSampleKSTest performs a two-sample Kolmogorov-Smirnov test to compare the distributions of values in two data sets.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
[SerializableAttribute]
public class TwoSampleKSTest : ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class TwoSampleKSTest _
	Implements ICloneable
Visual C++
[SerializableAttribute]
public ref class TwoSampleKSTest : ICloneable

Remarks

For each potential value x, the Kolmogorov-Smirnov test compares the proportion of values in the first sample less than x with the proportion of values in the second sample less than x. The null hypothesis is that the two samples have the same continuous distribution. The alternative hypothesis is that they have different continuous distributions.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Stats..::.TwoSampleKSTest

See Also