I think I didn't understand the meaning of ANOVA correctly so here's my question: Isn't it sufficient to calculate the mean and variance for each group manually?
I mean, sure it is possible so what is the benefit of ANOVA then?
I think I didn't understand the meaning of ANOVA correctly so here's my question: Isn't it sufficient to calculate the mean and variance for each group manually?
I mean, sure it is possible so what is the benefit of ANOVA then?
ANOVA extends the t-test to more than two groups. Doing so, it asks a slightly different question to the t-test (phrasing it liberally): "Does putting the data into the different factor levels (groups) make sense?" In a predictive setting, this would mean "Does forming groups make my prediction better (particulary reduce prediction error)?" In an explanatory setting, this means "Are there substantial enough differences between some groups to indicate a non-random grouping of the data?"
If an ANOVA indicates such significant differences between groups, researchers often employ post-hoc tests to identify which groups differ (significantly, after correcting for multiple testing). When doing so, the advantage of ANOVA over t-test indeed is small, IMHO. Also, ANOVA requires homogeneity of variance across all groups, while the t-test (in its more general formulation) can accommodate heterogeneous variances.
In a wider understanding of ANOVA (compatible at least with https://en.wikipedia.org/wiki/Analysis_of_variance), namely as multiple linear regression, possibly with categorical predictor(s), the ANOVA allows for specifying complex designs, and in its output focusses on statistical effect rather than regression coefficients (although mathematically equivalent to multiple linear regression: ANOVA vs multiple linear regression? Why is ANOVA so commonly used in experimental studies?).
Analysis of variance (ANOVA) is really a misnomer. ANOVA is really fitting a linear model with the group as a categorical variable. Hence the benefits of ANOVA are the things you get from a linear model, which is more than just the variances and means of each group (the latter is descriptive, not a “model”.
Specifically, as mentioned in the answer above, you can specify interactions, find confidence intervals for contrasts, etc.