Example usage for org.apache.commons.math3.stat.inference TestUtils oneWayAnovaTest

List of usage examples for org.apache.commons.math3.stat.inference TestUtils oneWayAnovaTest

Introduction

In this page you can find the example usage for org.apache.commons.math3.stat.inference TestUtils oneWayAnovaTest.

Prototype

public static boolean oneWayAnovaTest(final Collection<double[]> categoryData, final double alpha)
        throws NullArgumentException, DimensionMismatchException, OutOfRangeException, ConvergenceException,
        MaxCountExceededException 

Source Link

Usage

From source file:iDynoOptimizer.MOEAFramework26.src.org.moeaframework.util.statistics.OneWayANOVA.java

/**
 * {@inheritDoc}//from w  ww .j a v  a  2 s .  co m
 * 
 * @see TestUtils#oneWayAnovaTest(java.util.Collection, double)
 */
@Override
public boolean test(double alpha) {
    return TestUtils.oneWayAnovaTest(categorize(), alpha);
}