Click or drag to resize

OneSampleZTestUpdate(IDFColumn, Double, Double) Method

Updates the test statistic with new sample data and population parameters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Update(
	IDFColumn data,
	double mu0,
	double sigma
)

Parameters

data  IDFColumn
A column of observed values.
mu0  Double
The population mean.
sigma  Double
The population standard deviation.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if data is not numeric or has length of zero.
Remarks
The sample mean and sample size are computed from the given data column. Missing values are ignored.
See Also