Navigation
Synopsis Analysis of Variance (ANOVA) test.
Function bool anovaTest(list[list[num]] categoryData, num alpha)
Usage import analysis::statistics::Inference;
Description Perform Analysis of Variance test also described here.

Returns true iff the estimated p-value is less than alpha (0 < alpha <= 0.5).

The exact p-value is computed using the formula p = 1 - cumulativeProbability(F) where F is the anovaFValue.
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.