Java org.apache.commons.math.stat.inference TTestImpl fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math.stat.inference TTestImpl fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math.stat.inference TTestImpl.

The text is from its open source code.

Subclass

org.apache.commons.math.stat.inference.TTestImpl has subclasses.
Click this link to see all its subclasses.

Constructor

TTestImpl()
Default constructor.

Method

doublet(double mu, double[] observed)
Computes a t statistic given observed values and a comparison constant.
doublet(double mu, StatisticalSummary sampleStats)
Computes a t statistic to use in comparing the mean of the dataset described by sampleStats to mu.
doublet(double[] sample1, double[] sample2)
Computes a 2-sample t statistic, without the hypothesis of equal subpopulation variances.
doublet(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)
Computes a 2-sample t statistic , comparing the means of the datasets described by two StatisticalSummary instances, without the assumption of equal subpopulation variances.
doubletTest(double mu, double[] sample)
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.
doubletTest(double mu, StatisticalSummary sampleStats)
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.
doubletTest(double[] sample1, double[] sample2)
Returns the observed significance level, or p-value, associated with a two-sample, two-tailed t-test comparing the means of the input arrays.
doubletTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2)
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.