Click or drag to resize

OneSampleTTestUpdate(IDFColumn, Double) Method

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

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

Parameters

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