| TwoSamplePairedTTest(IDFColumn, IDFColumn) Constructor |
Constructs a TwoSamplePairedTTest instance using the given paired columns of sample data.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public TwoSamplePairedTTest(
IDFColumn data1,
IDFColumn data2
)
Public Sub New (
data1 As IDFColumn,
data2 As IDFColumn
)
public:
TwoSamplePairedTTest(
IDFColumn^ data1,
IDFColumn^ data2
)
new :
data1 : IDFColumn *
data2 : IDFColumn -> TwoSamplePairedTTest
Parameters
- data1 IDFColumn
- A column of observed values.
- data2 IDFColumn
- A column of observed values.
Exceptions Remarks
The mean of the differences between paired observations, the standard deviation of the
differences, and the sample size are computed from the given columns.
Paired observations where either value is missing 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.
Example
Thrown if the given data is not numeric.
See Also