TTest.Result |
TTest.pairedTest(double[] x,
double[] y) |
Performs a paired two-sample t-test on related samples comparing the mean difference between
the samples to mu .
|
TTest.Result |
TTest.test(double[] sample) |
Performs a one-sample t-test comparing the mean of the sample to mu .
|
TTest.Result |
TTest.test(double[] x,
double[] y) |
Performs a two-sample t-test on independent samples comparing the difference in means of
the samples to mu .
|
TTest.Result |
TTest.test(double m,
double v,
long n) |
Perform a one-sample t-test comparing the mean of the dataset to mu .
|
TTest.Result |
TTest.test(double m1,
double v1,
long n1,
double m2,
double v2,
long n2) |
Performs a two-sample t-test on independent samples comparing the difference in means of the
datasets to mu .
|