Click or drag to resize

TwoSampleUnpairedUnequalTTest(IDFColumn, IDFColumn) Constructor

Constructs a TwoSampleUnpairedUnequalTTest instance using the given columns of sample data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public TwoSampleUnpairedUnequalTTest(
	IDFColumn data1,
	IDFColumn data2
)

Parameters

data1  IDFColumn
A column of observed values for the first sample.
data2  IDFColumn
A column of observed values for the second sample.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if data1 or data2 is not numeric or has length of zero after removing missing values.
Remarks
The sample means, sample standard deviations, and sample sizes are computed from the given columns. Missing values are ignored. The alpha level is set to the current value specified by the static DefaultAlpha property; the form of the hypothesis test is set to the current DefaultType.
See Also