double |
OneWayAnova.anovaPValue(java.util.Collection<double[]> categoryData) |
Computes the ANOVA P-value for a collection of double[]
arrays.
|
double |
OneWayAnova.anovaPValue(java.util.Collection<SummaryStatistics> categoryData,
boolean allowOneElementData) |
|
boolean |
OneWayAnova.anovaTest(java.util.Collection<double[]> categoryData,
double alpha) |
Performs an ANOVA test, evaluating the null hypothesis that there
is no difference among the means of the data categories.
|
double |
ChiSquareTest.chiSquareTest(double[] expected,
long[] observed) |
|
boolean |
ChiSquareTest.chiSquareTest(double[] expected,
long[] observed,
double alpha) |
Performs a
Chi-square goodness of fit test evaluating the null hypothesis that the
observed counts conform to the frequency distribution described by the expected
counts, with significance level alpha.
|
double |
ChiSquareTest.chiSquareTest(long[][] counts) |
|
boolean |
ChiSquareTest.chiSquareTest(long[][] counts,
double alpha) |
Performs a
chi-square test of independence evaluating the null hypothesis that the
classifications represented by the counts in the columns of the input 2-way table
are independent of the rows, with significance level alpha.
|
static double |
InferenceTestUtils.chiSquareTest(double[] expected,
long[] observed) |
|
static boolean |
InferenceTestUtils.chiSquareTest(double[] expected,
long[] observed,
double alpha) |
|
static double |
InferenceTestUtils.chiSquareTest(long[][] counts) |
|
static boolean |
InferenceTestUtils.chiSquareTest(long[][] counts,
double alpha) |
|
double |
ChiSquareTest.chiSquareTestDataSetsComparison(long[] observed1,
long[] observed2) |
Returns the observed significance level, or
p-value, associated with a Chi-Square two sample test comparing
bin frequency counts in observed1 and
observed2.
|
boolean |
ChiSquareTest.chiSquareTestDataSetsComparison(long[] observed1,
long[] observed2,
double alpha) |
Performs a Chi-Square two sample test comparing two binned data
sets.
|
static double |
InferenceTestUtils.chiSquareTestDataSetsComparison(long[] observed1,
long[] observed2) |
|
static boolean |
InferenceTestUtils.chiSquareTestDataSetsComparison(long[] observed1,
long[] observed2,
double alpha) |
|
double |
GTest.gTest(double[] expected,
long[] observed) |
Returns the observed significance level, or p-value,
associated with a G-Test for goodness of fit comparing the
observed frequency counts to those in the expected array.
|
boolean |
GTest.gTest(double[] expected,
long[] observed,
double alpha) |
Performs a G-Test (Log-Likelihood Ratio Test) for goodness of fit
evaluating the null hypothesis that the observed counts conform to the
frequency distribution described by the expected counts, with
significance level alpha.
|
static double |
InferenceTestUtils.gTest(double[] expected,
long[] observed) |
|
static boolean |
InferenceTestUtils.gTest(double[] expected,
long[] observed,
double alpha) |
|
double |
GTest.gTestDataSetsComparison(long[] observed1,
long[] observed2) |
Returns the observed significance level, or
p-value, associated with a G-Value (Log-Likelihood Ratio) for two
sample test comparing bin frequency counts in observed1 and
observed2.
|
boolean |
GTest.gTestDataSetsComparison(long[] observed1,
long[] observed2,
double alpha) |
Performs a G-Test (Log-Likelihood Ratio Test) comparing two binned
data sets.
|
static double |
InferenceTestUtils.gTestDataSetsComparison(long[] observed1,
long[] observed2) |
|
static boolean |
InferenceTestUtils.gTestDataSetsComparison(long[] observed1,
long[] observed2,
double alpha) |
|
double |
GTest.gTestIntrinsic(double[] expected,
long[] observed) |
Returns the intrinsic (Hardy-Weinberg proportions) p-Value, as described
in p64-69 of McDonald, J.H.
|
static double |
InferenceTestUtils.gTestIntrinsic(double[] expected,
long[] observed) |
|
static double |
InferenceTestUtils.homoscedasticTTest(double[] sample1,
double[] sample2) |
|
static boolean |
InferenceTestUtils.homoscedasticTTest(double[] sample1,
double[] sample2,
double alpha) |
|
static double |
InferenceTestUtils.homoscedasticTTest(StatisticalSummary sampleStats1,
StatisticalSummary sampleStats2) |
|
double |
TTest.homoscedasticTTest(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, under the assumption that
the two samples are drawn from subpopulations with equal variances.
|
boolean |
TTest.homoscedasticTTest(double[] sample1,
double[] sample2,
double alpha) |
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.
|
protected double |
TTest.homoscedasticTTest(double m1,
double m2,
double v1,
double v2,
double n1,
double n2) |
Computes p-value for 2-sided, 2-sample t-test, under the assumption
of equal subpopulation variances.
|
double |
TTest.homoscedasticTTest(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, under the hypothesis of equal subpopulation variances.
|
double |
MannWhitneyUTest.mannWhitneyUTest(double[] x,
double[] y) |
|
static double |
InferenceTestUtils.oneWayAnovaPValue(java.util.Collection<double[]> categoryData) |
|
static boolean |
InferenceTestUtils.oneWayAnovaTest(java.util.Collection<double[]> categoryData,
double alpha) |
|
static double |
InferenceTestUtils.pairedTTest(double[] sample1,
double[] sample2) |
|
static boolean |
InferenceTestUtils.pairedTTest(double[] sample1,
double[] sample2,
double alpha) |
|
double |
TTest.pairedTTest(double[] sample1,
double[] sample2) |
Returns the observed significance level, or
p-value, associated with a paired, two-sample, two-tailed t-test
based on the data in the input arrays.
|
boolean |
TTest.pairedTTest(double[] sample1,
double[] sample2,
double alpha) |
Performs a paired t-test evaluating the null hypothesis that the
mean of the paired differences between sample1 and
sample2 is 0 in favor of the two-sided alternative that the
mean paired difference is not equal to 0, with significance level
alpha.
|
static double |
InferenceTestUtils.tTest(double[] sample1,
double[] sample2) |
|
static boolean |
InferenceTestUtils.tTest(double[] sample1,
double[] sample2,
double alpha) |
|
static double |
InferenceTestUtils.tTest(double mu,
double[] sample) |
|
static boolean |
InferenceTestUtils.tTest(double mu,
double[] sample,
double alpha) |
|
static double |
InferenceTestUtils.tTest(double mu,
StatisticalSummary sampleStats) |
|
static boolean |
InferenceTestUtils.tTest(double mu,
StatisticalSummary sampleStats,
double alpha) |
|
static double |
InferenceTestUtils.tTest(StatisticalSummary sampleStats1,
StatisticalSummary sampleStats2) |
|
static boolean |
InferenceTestUtils.tTest(StatisticalSummary sampleStats1,
StatisticalSummary sampleStats2,
double alpha) |
|
double |
TTest.tTest(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.
|
boolean |
TTest.tTest(double[] sample1,
double[] sample2,
double alpha) |
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.
|
double |
TTest.tTest(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.
|
boolean |
TTest.tTest(double mu,
double[] sample,
double alpha) |
Performs a
two-sided t-test evaluating the null hypothesis that the mean of the population from
which sample is drawn equals mu.
|
protected double |
TTest.tTest(double m,
double mu,
double v,
double n) |
Computes p-value for 2-sided, 1-sample t-test.
|
protected double |
TTest.tTest(double m1,
double m2,
double v1,
double v2,
double n1,
double n2) |
Computes p-value for 2-sided, 2-sample t-test.
|
double |
TTest.tTest(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.
|
boolean |
TTest.tTest(double mu,
StatisticalSummary sampleStats,
double alpha) |
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.
|
double |
TTest.tTest(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.
|
boolean |
TTest.tTest(StatisticalSummary sampleStats1,
StatisticalSummary sampleStats2,
double alpha) |
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.
|
double |
WilcoxonSignedRankTest.wilcoxonSignedRankTest(double[] x,
double[] y,
boolean exactPValue) |
|