Skip navigation links
org.apache.commons.math.stat.inference

Interface TTest

Parameters:
sample1 - array of sample data values
sample2 - array of sample data values
Returns:
t statistic
Throws:
java.lang.IllegalArgumentException - if the precondition is not met
  • t

    double t(double[] sample1,
             double[] sample2)
      throws java.lang.IllegalArgumentException
    Computes a 2-sample t statistic, without the hypothesis of equal subpopulation variances. To compute a t-statistic assuming equal variances, use homoscedasticT(double[], double[]).

    This statistic can be used to perform a two-sample t-test to compare sample means.

    The t-statisitc is

       t = (m1 - m2) / sqrt(var1/n1 + var2/n2)

    where n1 is the size of the first sample n2 is the size of the second sample; m1 is the mean of the first sample; m2 is the mean of the second sample; var1 is the variance of the first sample; var2 is the variance of the second sample;

    Preconditions:

    • The observed array lengths must both be at least 2.

    Parameters:
    sample1 - array of sample data values
    sample2 - array of sample data values
    Returns:
    t statistic
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
  • t

    double t(StatisticalSummary sampleStats1,
             StatisticalSummary sampleStats2)
      throws java.lang.IllegalArgumentException
    Computes a 2-sample t statistic , comparing the means of the datasets described by two StatisticalSummary instances, without the assumption of equal subpopulation variances. Use homoscedasticT(StatisticalSummary, StatisticalSummary) to compute a t-statistic under the equal variances assumption.

    This statistic can be used to perform a two-sample t-test to compare sample means.

    The returned t-statisitc is

       t = (m1 - m2) / sqrt(var1/n1 + var2/n2)

    where n1 is the size of the first sample; n2 is the size of the second sample; m1 is the mean of the first sample; m2 is the mean of the second sample var1 is the variance of the first sample; var2 is the variance of the second sample

    Preconditions:

    • The datasets described by the two Univariates must each contain at least 2 observations.

    Parameters:
    sampleStats1 - StatisticalSummary describing data from the first sample
    sampleStats2 - StatisticalSummary describing data from the second sample
    Returns:
    t statistic
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
  • homoscedasticT

    double homoscedasticT(StatisticalSummary sampleStats1,
                          StatisticalSummary sampleStats2)
                   throws java.lang.IllegalArgumentException
    Computes a 2-sample t statistic, comparing the means of the datasets described by two StatisticalSummary instances, under the assumption of equal subpopulation variances. To compute a t-statistic without the equal variances assumption, use t(StatisticalSummary, StatisticalSummary).

    This statistic can be used to perform a (homoscedastic) two-sample t-test to compare sample means.

    The t-statisitc returned is

       t = (m1 - m2) / (sqrt(1/n1 +1/n2) sqrt(var))

    where n1 is the size of first sample; n2 is the size of second sample; m1 is the mean of first sample; m2 is the mean of second sample and var is the pooled variance estimate:

    var = sqrt(((n1 - 1)var1 + (n2 - 1)var2) / ((n1-1) + (n2-1)))

    with var1 the variance of the first sample and var2 the variance of the second sample.

    Preconditions:

    • The datasets described by the two Univariates must each contain at least 2 observations.

    Parameters:
    sampleStats1 - StatisticalSummary describing data from the first sample
    sampleStats2 - StatisticalSummary describing data from the second sample
    Returns:
    t statistic
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
  • tTest

    double tTest(double mu,
                 double[] sample)
          throws java.lang.IllegalArgumentException,
                 MathException
    Returns the observed significance level, or p-value, associated with a one-sample, two-tailed t-test comparing the mean of the input array with the constant mu.

    The number returned is the smallest significance level at which one can reject the null hypothesis that the mean equals mu in favor of the two-sided alternative that the mean is different from mu. For a one-sided test, divide the returned value by 2.

    Usage Note:
    The validity of the test depends on the assumptions of the parametric t-test procedure, as discussed here

    Preconditions:

    • The observed array length must be at least 2.

    Parameters:
    mu - constant value to compare sample mean against
    sample - array of sample data values
    Returns:
    p-value
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
    MathException - if an error occurs computing the p-value
  • tTest

    boolean tTest(double mu,
                  double[] sample,
                  double alpha)
           throws java.lang.IllegalArgumentException,
                  MathException
    Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from which sample is drawn equals mu.

    Returns true iff the null hypothesis can be rejected with confidence 1 - alpha. To perform a 1-sided test, use alpha * 2

    Examples:

    1. To test the (2-sided) hypothesis sample mean = mu at the 95% level, use
      tTest(mu, sample, 0.05)
    2. To test the (one-sided) hypothesis sample mean < mu at the 99% level, first verify that the measured sample mean is less than mu and then use
      tTest(mu, sample, 0.02)

    Usage Note:
    The validity of the test depends on the assumptions of the one-sample parametric t-test procedure, as discussed here

    Preconditions:

    • The observed array length must be at least 2.

    Parameters:
    mu - constant value to compare sample mean against
    sample - array of sample data values
    alpha - significance level of the test
    Returns:
    p-value
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
    MathException - if an error computing the p-value
  • tTest

    double tTest(double mu,
                 StatisticalSummary sampleStats)
          throws java.lang.IllegalArgumentException,
                 MathException
    Returns the observed significance level, or p-value, associated with a one-sample, two-tailed t-test comparing the mean of the dataset described by sampleStats with the constant mu.

    The number returned is the smallest significance level at which one can reject the null hypothesis that the mean equals mu in favor of the two-sided alternative that the mean is different from mu. For a one-sided test, divide the returned value by 2.

    Usage Note:
    The validity of the test depends on the assumptions of the parametric t-test procedure, as discussed here

    Preconditions:

    • The sample must contain at least 2 observations.

    Parameters:
    mu - constant value to compare sample mean against
    sampleStats - StatisticalSummary describing sample data
    Returns:
    p-value
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
    MathException - if an error occurs computing the p-value
  • tTest

    boolean tTest(double mu,
                  StatisticalSummary sampleStats,
                  double alpha)
           throws java.lang.IllegalArgumentException,
                  MathException
    Performs a two-sided t-test evaluating the null hypothesis that the mean of the population from which the dataset described by stats is drawn equals mu.

    Returns true iff the null hypothesis can be rejected with confidence 1 - alpha. To perform a 1-sided test, use alpha * 2.

    Examples:

    1. To test the (2-sided) hypothesis sample mean = mu at the 95% level, use
      tTest(mu, sampleStats, 0.05)
    2. To test the (one-sided) hypothesis sample mean < mu at the 99% level, first verify that the measured sample mean is less than mu and then use
      tTest(mu, sampleStats, 0.02)

    Usage Note:
    The validity of the test depends on the assumptions of the one-sample parametric t-test procedure, as discussed here

    Preconditions:

    • The sample must include at least 2 observations.

    Parameters:
    mu - constant value to compare sample mean against
    sampleStats - StatisticalSummary describing sample data values
    alpha - significance level of the test
    Returns:
    p-value
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
    MathException - if an error occurs computing the p-value
  • tTest

    double tTest(double[] sample1,
                 double[] sample2)
          throws java.lang.IllegalArgumentException,
                 MathException
    Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the input arrays.

    The number returned is the smallest significance level at which one can reject the null hypothesis that the two means are equal in favor of the two-sided alternative that they are different. For a one-sided test, divide the returned value by 2.

    The test does not assume that the underlying popuation variances are equal and it uses approximated degrees of freedom computed from the sample data to compute the p-value. The t-statistic used is as defined in t(double[], double[]) and the Welch-Satterthwaite approximation to the degrees of freedom is used, as described here. To perform the test under the assumption of equal subpopulation variances, use homoscedasticTTest(double[], double[]).

    Usage Note:
    The validity of the p-value depends on the assumptions of the parametric t-test procedure, as discussed here

    Preconditions:

    • The observed array lengths must both be at least 2.

    Parameters:
    sample1 - array of sample data values
    sample2 - array of sample data values
    Returns:
    p-value for t-test
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
    MathException - if an error occurs computing the p-value
  • homoscedasticTTest

    double homoscedasticTTest(double[] sample1,
                              double[] sample2)
                       throws java.lang.IllegalArgumentException,
                              MathException
    Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the input arrays, under the assumption that the two samples are drawn from subpopulations with equal variances. To perform the test without the equal variances assumption, use tTest(double[], double[]).

    The number returned is the smallest significance level at which one can reject the null hypothesis that the two means are equal in favor of the two-sided alternative that they are different. For a one-sided test, divide the returned value by 2.

    A pooled variance estimate is used to compute the t-statistic. See homoscedasticT(double[], double[]). The sum of the sample sizes minus 2 is used as the degrees of freedom.

    Usage Note:
    The validity of the p-value depends on the assumptions of the parametric t-test procedure, as discussed here

    Preconditions:

    • The observed array lengths must both be at least 2.

    Parameters:
    sample1 - array of sample data values
    sample2 - array of sample data values
    Returns:
    p-value for t-test
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
    MathException - if an error occurs computing the p-value
  • tTest

    boolean tTest(double[] sample1,
                  double[] sample2,
                  double alpha)
           throws java.lang.IllegalArgumentException,
                  MathException
    Performs a two-sided t-test evaluating the null hypothesis that sample1 and sample2 are drawn from populations with the same mean, with significance level alpha. This test does not assume that the subpopulation variances are equal. To perform the test assuming equal variances, use homoscedasticTTest(double[], double[], double).

    Returns true iff the null hypothesis that the means are equal can be rejected with confidence 1 - alpha. To perform a 1-sided test, use alpha * 2

    See t(double[], double[]) for the formula used to compute the t-statistic. Degrees of freedom are approximated using the Welch-Satterthwaite approximation.

    Examples:

    1. To test the (2-sided) hypothesis mean 1 = mean 2 at the 95% level, use
      tTest(sample1, sample2, 0.05).
    2. To test the (one-sided) hypothesis mean 1 < mean 2 , at the 99% level, first verify that the measured mean of sample 1 is less than the mean of sample 2 and then use
      tTest(sample1, sample2, 0.02)

    Usage Note:
    The validity of the test depends on the assumptions of the parametric t-test procedure, as discussed here

    Preconditions:

    • The observed array lengths must both be at least 2.
    • 0 < alpha < 0.5

    Parameters:
    sample1 - array of sample data values
    sample2 - array of sample data values
    alpha - significance level of the test
    Returns:
    true if the null hypothesis can be rejected with confidence 1 - alpha
    Throws:
    java.lang.IllegalArgumentException - if the preconditions are not met
    MathException - if an error occurs performing the test
  • homoscedasticTTest

    boolean homoscedasticTTest(double[] sample1,
                               double[] sample2,
                               double alpha)
                        throws java.lang.IllegalArgumentException,
                               MathException
    Performs a two-sided t-test evaluating the null hypothesis that sample1 and sample2 are drawn from populations with the same mean, with significance level alpha, assuming that the subpopulation variances are equal. Use tTest(double[], double[], double) to perform the test without the assumption of equal variances.

    Returns true iff the null hypothesis that the means are equal can be rejected with confidence 1 - alpha. To perform a 1-sided test, use alpha * 2. To perform the test without the assumption of equal subpopulation variances, use tTest(double[], double[], double).

    A pooled variance estimate is used to compute the t-statistic. See t(double[], double[]) for the formula. The sum of the sample sizes minus 2 is used as the degrees of freedom.

    Examples:

    1. To test the (2-sided) hypothesis mean 1 = mean 2 at the 95% level, use
      tTest(sample1, sample2, 0.05).
    2. To test the (one-sided) hypothesis mean 1 < mean 2, at the 99% level, first verify that the measured mean of sample 1 is less than the mean of sample 2 and then use
      tTest(sample1, sample2, 0.02)

    Usage Note:
    The validity of the test depends on the assumptions of the parametric t-test procedure, as discussed here

    Preconditions:

    • The observed array lengths must both be at least 2.
    • 0 < alpha < 0.5

    Parameters:
    sample1 - array of sample data values
    sample2 - array of sample data values
    alpha - significance level of the test
    Returns:
    true if the null hypothesis can be rejected with confidence 1 - alpha
    Throws:
    java.lang.IllegalArgumentException - if the preconditions are not met
    MathException - if an error occurs performing the test
  • tTest

    double tTest(StatisticalSummary sampleStats1,
                 StatisticalSummary sampleStats2)
          throws java.lang.IllegalArgumentException,
                 MathException
    Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances.

    The number returned is the smallest significance level at which one can reject the null hypothesis that the two means are equal in favor of the two-sided alternative that they are different. For a one-sided test, divide the returned value by 2.

    The test does not assume that the underlying popuation variances are equal and it uses approximated degrees of freedom computed from the sample data to compute the p-value. To perform the test assuming equal variances, use homoscedasticTTest(StatisticalSummary, StatisticalSummary).

    Usage Note:
    The validity of the p-value depends on the assumptions of the parametric t-test procedure, as discussed here

    Preconditions:

    • The datasets described by the two Univariates must each contain at least 2 observations.

    Parameters:
    sampleStats1 - StatisticalSummary describing data from the first sample
    sampleStats2 - StatisticalSummary describing data from the second sample
    Returns:
    p-value for t-test
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
    MathException - if an error occurs computing the p-value
  • homoscedasticTTest

    double homoscedasticTTest(StatisticalSummary sampleStats1,
                              StatisticalSummary sampleStats2)
                       throws java.lang.IllegalArgumentException,
                              MathException
    Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the datasets described by two StatisticalSummary instances, under the hypothesis of equal subpopulation variances. To perform a test without the equal variances assumption, use tTest(StatisticalSummary, StatisticalSummary).

    The number returned is the smallest significance level at which one can reject the null hypothesis that the two means are equal in favor of the two-sided alternative that they are different. For a one-sided test, divide the returned value by 2.

    See homoscedasticT(double[], double[]) for the formula used to compute the t-statistic. The sum of the sample sizes minus 2 is used as the degrees of freedom.

    Usage Note:
    The validity of the p-value depends on the assumptions of the parametric t-test procedure, as discussed here

    Preconditions:

    • The datasets described by the two Univariates must each contain at least 2 observations.

    Parameters:
    sampleStats1 - StatisticalSummary describing data from the first sample
    sampleStats2 - StatisticalSummary describing data from the second sample
    Returns:
    p-value for t-test
    Throws:
    java.lang.IllegalArgumentException - if the precondition is not met
    MathException - if an error occurs computing the p-value
  • tTest

    boolean tTest(StatisticalSummary sampleStats1,
                  StatisticalSummary sampleStats2,
                  double alpha)
           throws java.lang.IllegalArgumentException,
                  MathException
    Performs a two-sided t-test evaluating the null hypothesis that sampleStats1 and sampleStats2 describe datasets drawn from populations with the same mean, with significance level alpha. This test does not assume that the subpopulation variances are equal. To perform the test under the equal variances assumption, use homoscedasticTTest(StatisticalSummary, StatisticalSummary).

    Returns true iff the null hypothesis that the means are equal can be rejected with confidence 1 - alpha. To perform a 1-sided test, use alpha * 2

    See t(double[], double[]) for the formula used to compute the t-statistic. Degrees of freedom are approximated using the Welch-Satterthwaite approximation.

    Examples:

    1. To test the (2-sided) hypothesis mean 1 = mean 2 at the 95%, use
      tTest(sampleStats1, sampleStats2, 0.05)
    2. To test the (one-sided) hypothesis mean 1 < mean 2 at the 99% level, first verify that the measured mean of sample 1 is less than the mean of sample 2 and then use
      tTest(sampleStats1, sampleStats2, 0.02)

    Usage Note:
    The validity of the test depends on the assumptions of the parametric t-test procedure, as discussed here

    Preconditions:

    • The datasets described by the two Univariates must each contain at least 2 observations.
    • 0 < alpha < 0.5

    Parameters:
    sampleStats1 - StatisticalSummary describing sample data values
    sampleStats2 - StatisticalSummary describing sample data values
    alpha - significance level of the test
    Returns:
    true if the null hypothesis can be rejected with confidence 1 - alpha
    Throws:
    java.lang.IllegalArgumentException - if the preconditions are not met
    MathException - if an error occurs performing the test

Copyright © 2010 - 2020 Adobe. All Rights Reserved