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