Skip to content
@addmaple/stats
Search
K
Main Navigation
Guide
API Reference
Examples
GitHub
Appearance
Menu
Return to top
On this page
anovaTestCategorical
Perform full ANOVA test with categorical labels.
Try it out
Try it out
Run
import { init, anovaTestCategorical } from '@addmaple/stats'; await init(); const groups = ['A', 'A', 'B', 'B', 'C', 'C']; const values = [10, 12, 20, 22, 30, 32]; const result = anovaTestCategorical(groups, values); result;
Initializing library...