List of usage examples for org.apache.commons.math3.stat.inference TestUtils oneWayAnovaTest
public static boolean oneWayAnovaTest(final Collection<double[]> categoryData, final double alpha) throws NullArgumentException, DimensionMismatchException, OutOfRangeException, ConvergenceException, MaxCountExceededException
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); }