Tested tool guide
Tested browser tools
Checked August 15, 2026
What ANOVA Calculator & Visualizer does, with a checked example
This tool runs a one-way or two-way analysis of variance on group data entered as columns of numbers. It partitions total variance into between-group and within-group components, builds an F statistic from their mean squares, and reports the F ratio, degrees of freedom, and p-value alongside group means and a plotted spread. A common surprise: a low p-value only says the group means are not all equal - it does not say which groups differ, so a significant F should be followed by the built-in post-hoc pairwise test, not read on its own as an answer.
Worked example
A concrete input and expected output from the current implementation.
Input
Group A: 4, 6, 8
Group B: 5, 7, 9
Group C: 8, 10, 12
->
Expected output
F(2, 6) = 3.25, p ≈ 0.111 (not significant at α = 0.05). Group means: A = 6, B = 7, C = 10; grand mean = 7.667. SSB = 26, SSW = 24; MSB = 13, MSW = 4.
Between-group mean square (13) divided by within-group mean square (4) gives F = 3.25; with 2 and 6 degrees of freedom that falls short of the 0.05 critical value of about 5.14, so the three means are not judged significantly different despite Group C's higher average.