}
// ANOVA test with raw eps aur data.
public void testRawEpsAurAnova() {
List<double[]> bins = getBins(10, jdMagData);
OneWayAnova anova = new OneWayAnovaImpl();
try {
double fValue = anova.anovaFValue(bins);
assertEquals("2.91", String.format("%2.2f", fValue));
double pValue = anova.anovaPValue(bins);
assertEquals("0.000002", String.format("%1.6f", pValue));
boolean rejectNullHypothesis = anova.anovaTest(bins, 0.05);
assertTrue(rejectNullHypothesis);
} catch (MathException e) {
System.err.println(e.getMessage());
fail();
} catch (Exception e) {