Class OneSampleKSTest performs a Kolmogorov-Smirnov test of the distribution of one sample.

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

Syntax

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

Remarks

Class OneSampleKSTest compares the distribution of a given sample to the hypothesized distribution defined by a specified cumulative distribution function (CDF). For each potential value x, the Kolmogorov-Smirnov test compares the proportion of values less than x with the expected number predicted by the specified CDF. The null hypothesis is that the given sample data follow the specified distribution. The alternative hypothesis that the data do not have that distribution.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Stats..::.OneSampleKSTest

See Also