Click or drag to resize

OneSampleZTest(IDFColumn, Double, Double, Double, HypothesisType) Constructor

Constructs a OneSampleZTest instance using the given column of sample data, and the given population and hypothesis parameters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public OneSampleZTest(
	IDFColumn data,
	double mu0,
	double sigma,
	double alpha,
	HypothesisType type
)

Parameters

data  IDFColumn
A column of observed values.
mu0  Double
The population mean.
sigma  Double
The population standard deviation.
alpha  Double
The accepted probability of falsely rejecting the null hypothesis.
type  HypothesisType
Enum value indicating the form of the alternative hypothesis.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if data does not contain numeric data, or has length of zero after removing missing values.
Remarks
The sample mean and sample size are computed from the given column. Missing values are ignored.
See Also