![]() |
|
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
![]() ![]() 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.
![]() |