Annova

It looks like your message got cut off! Could you clarify what you meant by "Annova"? Here are a few possibilities:
  1. ANOVA (Analysis of Variance) - the statistical method
  2. Annova - a specific product, brand, or name
  3. Something else entirely
What were you looking for?

1

Asking for Preferences

ANOVA - Analysis of Variance


What is ANOVA?

ANOVA (Analysis of Variance) is a statistical test used to compare the means of three or more groups to determine if at least one group mean is significantly different from the others. It was developed by Ronald A. Fisher in the 1920s.
Key idea: ANOVA partitions total variability in data into components - variability between groups vs. variability within groups.

The Core Logic

ANOVA tests the null hypothesis:
H₀: All group means are equal (μ₁ = μ₂ = μ₃ = ...) H₁: At least one group mean is different
It uses the F-statistic:
F = Variance Between Groups / Variance Within Groups
   = Mean Square Between (MSB) / Mean Square Within (MSW)
  • A large F means between-group variance >> within-group variance → likely a real effect
  • A small F (near 1) means the groups are not meaningfully different

Key Assumptions

  1. Normality - data within each group is approximately normally distributed
  2. Homogeneity of variance - groups have roughly equal variances (tested with Levene's test)
  3. Independence - observations are independent of each other
  4. Random sampling - data is drawn randomly


ONE-WAY ANOVA

One independent variable (factor) with 3+ levels.

Example

You test the effect of three teaching methods (A, B, C) on exam scores.
Method AMethod BMethod C
788590
828892
758087
798391
Steps:
  1. Calculate group means: A = 78.5, B = 84, C = 90
  2. Calculate Grand Mean = mean of all values
  3. Compute Sum of Squares Between (SSB) - how much group means deviate from grand mean
  4. Compute Sum of Squares Within (SSW) - how much individual values deviate from their group mean
  5. Divide by degrees of freedom to get MSB and MSW
  6. Compute F = MSB / MSW
  7. Compare F to the critical F-value from an F-distribution table (or get p-value)
Decision: If p < 0.05, reject H₀ - at least one teaching method produces different scores.

ANOVA Table Structure

SourceSSdfMSFp-value
BetweenSSBk-1SSB/dfMSB/MSW...
WithinSSWN-kSSW/df
TotalSSTN-1
Where k = number of groups, N = total observations.


TWO-WAY ANOVA

Two independent variables (factors), examining their individual effects AND their interaction.

Example

You study the effect of Teaching Method (A, B, C) AND Class Size (Small, Large) on exam scores.
This lets you answer three questions:
  1. Does teaching method significantly affect scores? (Main effect 1)
  2. Does class size significantly affect scores? (Main effect 2)
  3. Does the effect of teaching method depend on class size? (Interaction effect)

Interaction Effect - The Most Interesting Part

An interaction exists when the effect of one factor changes depending on the level of the other.
Example:
  Method A works better in small classes.
  Method C works equally well regardless of class size.
  → Teaching method and class size INTERACT.
If an interaction is significant, you cannot interpret main effects in isolation.

Two-Way ANOVA Table

SourceSSdfMSF
Factor ASSAa-1MSAFA
Factor BSSBb-1MSBFB
A × B InteractionSSAB(a-1)(b-1)MSABFAB
Within (Error)SSWN-abMSW
TotalSSTN-1


REPEATED MEASURES ANOVA

The same subjects are measured multiple times (across conditions or time points).
This is the within-subjects equivalent of one-way ANOVA - it accounts for the fact that measurements from the same person are correlated.

Example

You measure pain scores in 5 patients at 3 time points: Before treatment, 1 week after, 4 weeks after.
PatientPreWeek 1Week 4
P1852
P2743
P3961
P4632
P5852
Why not use regular one-way ANOVA?
  • Regular ANOVA assumes independence between groups
  • Here, P1's Pre score and P1's Week 4 score are NOT independent - they're from the same person
  • Repeated measures ANOVA removes subject-to-subject variability, giving more statistical power

Key Extra Assumption: Sphericity

  • The variances of differences between all pairs of time points must be equal
  • Tested with Mauchly's test
  • If violated, apply corrections: Greenhouse-Geisser or Huynh-Feldt


POST-HOC TESTS

ANOVA only tells you "at least one group is different" - it does NOT tell you which groups differ. Post-hoc tests do pairwise comparisons while controlling for multiple testing error.
TestWhen to Use
Tukey's HSDEqual group sizes, comparing all pairs
BonferroniConservative, any number of comparisons
ScheffeMost conservative, flexible comparisons
LSD (Fisher's)Least conservative, small number of groups
Games-HowellWhen variances are unequal

When ANOVA Fails - Alternatives

SituationAlternative
Non-normal data, 3+ groupsKruskal-Wallis test (non-parametric One-Way ANOVA)
Non-normal, repeated measuresFriedman test
Only 2 groupsIndependent t-test or paired t-test

Quick Comparison Summary

FeatureOne-WayTwo-WayRepeated Measures
# of IVs121 (within-subjects)
SubjectsDifferent per groupDifferent per cellSame across levels
Tests interaction?NoYesNo (unless mixed design)
Key extra assumption--Sphericity
Non-parametric alt.Kruskal-Wallis-Friedman

Bottom line: Use One-Way ANOVA when you have one factor with 3+ groups. Use Two-Way ANOVA when you want to study two factors and their interaction simultaneously. Use Repeated Measures ANOVA when the same subjects appear in multiple conditions - it's more powerful because it controls for individual differences.
This is a shared conversation. Sign in to Orris to start your own chat.