public static TestResult PairedStudentTTest(
IReadOnlyList<double> x,
IReadOnlyList<double> y
)
Public Shared Function PairedStudentTTest (
x As IReadOnlyList(Of Double),
y As IReadOnlyList(Of Double)
) As TestResult
public:
static TestResult^ PairedStudentTTest(
IReadOnlyList<double>^ x,
IReadOnlyList<double>^ y
)
static member PairedStudentTTest :
x : IReadOnlyList<float> *
y : IReadOnlyList<float> -> TestResult
Like a two-sample, unpaired t-test (StudentTTest(IReadOnlyCollectionDouble, IReadOnlyCollectionDouble)), a paired t-test compares two samples to detect a difference in means. Unlike the unpaired version, the paired version assumes that each
ArgumentNullException | x or y is . |
DimensionMismatchException | x and y do not contain the same number of entries. |
InsufficientDataException | There are fewer than two data points. |