Click or drag to resize

OneSampleKSTest(IDFColumn, FuncDouble, Double, Double) Constructor

Constructs a OneSampleKSTest from the given sample data and specified cumulative distribution function (CDF).

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public OneSampleKSTest(
	IDFColumn data,
	Func<double, double> cdf,
	double alpha
)

Parameters

data  IDFColumn
The sample data.
cdf  FuncDouble, Double
A functor that takes a double-precision floating point number and returns a double-precision floating point number that encapsulates the hypothesized cumulative distribution function (CDF).
alpha  Double
The accepted probability of falsely rejecting the null hypothesis.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if data is not numeric or has length of zero, after missing values are ignored.
Remarks
Missing values are ignored.
See Also