When to use it
Use for multi-group mean comparisons when Levene’s test indicates unequal variances.
Required Inputs
- Groups of numeric values
- Alpha level
- Post-hoc method (Games-Howell)
Compare multiple group means when group variances are unequal using Welch's ANOVA, adjusted F-statistic, Welch degrees of freedom, and Games-Howell post-hoc test.
Run this test live in StatLab npm i @statlab/coreUse for multi-group mean comparisons when Levene’s test indicates unequal variances.
F_W = [ Σ w_i(X̄_i - X̄')² / (k - 1) ] / [ 1 + 2(k - 2)/(k² - 1) * Σ ((1 - w_i/W)² / (n_i - 1)) ]
import pingouin as pg
res = pg.welch_anova(dv='value', between='group', data=df)
print(res)
oneway.test(value ~ group, data = df, var.equal = FALSE)
import { welchAnova } from '@statlab/core';
const result = welchAnova([groupA, groupB, groupC]);
Continuous A/B testing, statistical telemetry analysis, and automated feedback loops for live backend services.
Explore VoxelPulse →Fixed-price AI release-readiness sprints, automated regression testing, and reliability statistical benchmarks.
Explore VoxelAssurance →Explore static calculators across the StatLab inference engine suite.