Uses of Class
org.apache.commons.statistics.inference.TTest.Result

Packages that use TTest.Result
Package
Description
Classes providing hypothesis testing.
  • Uses of TTest.Result in org.apache.commons.statistics.inference

    Modifier and Type
    Method
    Description
    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.test(double[] sample)
    Performs a one-sample t-test comparing the mean of the sample to mu.
    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.test(double m, double v, long n)
    Perform a one-sample t-test comparing the mean of the dataset to mu.
    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.