Skip to content
@addmaple/stats
Search
K
Main Navigation
Guide
API Reference
Examples
GitHub
Appearance
Menu
Return to top
On this page
anovaFScore
Perform one-way ANOVA and return the F-score.
Try it out
Try it out
Run
import { init, anovaFScore } from '@addmaple/stats'; await init(); const group1 = [2, 3, 7, 2, 6]; const group2 = [10, 11, 14, 13, 15]; const group3 = [20, 21, 24, 23, 25]; const result = anovaFScore([group1, group2, group3]); result;
Initializing library...