Group 1
Group 2
Group 3
Result
Enter group data and click Calculate
Compare means of multiple groups with one-way ANOVA.
No recently used tools
Loading categories...
Free online one-way ANOVA calculator. Compare means of multiple groups with F-statistic, p-value, complete ANOVA table, eta-squared effect size, interactive box plots, and Python scipy export.
Compare means of multiple groups with one-way ANOVA.
Analysis of Variance (ANOVA) is a statistical method that tests whether the means of three or more groups are significantly different. Instead of running multiple t-tests, ANOVA compares the variance between groups to the variance within groups using a single F-test.
Test whether 3 or more group means differ significantly in a single test, avoiding multiple comparison problems.
The ratio of between-group variance to within-group variance. A large F indicates the group means are spread apart more than expected by chance.
Running multiple t-tests inflates Type I error. ANOVA controls the overall error rate while testing all groups simultaneously.
The ANOVA table summarizes the decomposition of total variance into between-group and within-group components.
| Source | SS | df | MS | F |
|---|---|---|---|---|
| Between | SSB | k โ 1 | MSB | F = MSB / MSW |
| Within | SSW | N โ k | MSW | |
| Total | SST | N โ 1 |
Key: k = number of groups, N = total number of observations. SST = SSB + SSW. The F-statistic follows an F-distribution with (kโ1, Nโk) degrees of freedom.
Eta-squared (ฮทยฒ) measures how much of the total variance in the data is explained by group membership. It complements the p-value by indicating practical significance.
Observations must be independent within and across groups. Random sampling or random assignment satisfies this.
Data within each group should be approximately normally distributed. ANOVA is robust to moderate violations, especially with larger samples.
Group variances should be roughly equal. Use Leveneโs test to check. If violated, consider Welch ANOVA.