Chapter 12 One-Way Repeated Measures ANOVA
Usage: To check for a difference between three or more group means.
Requirements: Three or more variables that are interval/ratio and within-subject design.
Note: This is basically the same as the repeated measures t-test, but with more than two means.
Steps to conducting an one-way repeated measures ANOVA:
- Write out null and alternative hypotheses.
- Determine critical F-value for rejection of null hypothesis.
A. Use degrees of freedom (df) and alpha level.
- Calculate F-value for your data.
A. You must first find the sums of squares and mean squares.
- Compare your calculated F-value to the critical F-value.
A. If your calculated value is greater than the critical value, you reject the null hypothesis.
B. If your calculated value is less than the critical value, you fail to reject the null hypothesis.
- Calculate effect size (eta squared \(\eta^2\)).
- Run post hoc tests if neccessary.
- Calculate confidence interval (CI).
12.1 Example Setup
12.1.1 Hypotheses
\(\Large H_0: \mu_a = \mu_b = \mu_c\)
\(\Large H_1: the\ three\ means\ are\ not\ equal\)
12.1.2 Critical F-Value (CV)
\(\Large N = number\ of\ scores\)
\(\Large n = number\ of\ participants\)
\(\Large k = number\ of\ conditions\)
\(\Large df_{between\ conditions} = k - 1\)
\(\Large df_{total} = N - 1\)
\(\Large df_{between\ subjects} = n - 1\)
\(\Large df_{error} = (k-1)*(n-1)\)
\(\Large \alpha = .05\)
\(\Large CV = [check\ table]\)
12.1.3 Calculate F
\(\Large T_{condition} = \sum X_{condition}\)
\(\Large P_i = sum\ of\ scores\ for\ participant\ i\)
\(\Large SS_{total} = \sum X^2 - \frac{(\sum X)^2}{N}\)
\(\Large SS_{between\ conditions} = \frac{\sum T^2}{n} - \frac{(\sum X)^2}{N}\)
\(\Large SS_{across\ subjects} = \frac{\sum P_i^2}{k} - \frac{(\sum X)^2}{N}\)
\(\Large SS_{error} = SS_{total} - SS_{between\ conditions} - SS_{across\ subjects}\)
\(\Large MS_{between\ conditions} = \frac{SS_{between\ conditions}}{df_{between\ conditions}}\)
\(\Large MS_{error} = \frac{SS_{error}}{df_{error}}\)
\(\Large F = \frac{MS_{between\ conditions}}{MS_{error}}\)
12.1.4 Compare Observed F to CV
If F is greater than the CV, reject the null hypothesis.
If F is less than the CV, fail to reject the null hypothesis.
12.1.5 Calculate Effect Size
\(\Large \eta^2 = \frac{SS_{between\ conditions}}{SS_{between\ conditions} + SS_{error}}\)
12.1.6 Post Hoc Testing
Which means are different? Run Tukey’s HSD Test.
\(\Large q = [check\ table]\)
\(\Large CD = q\sqrt{\frac{MS_{error}}{n}}\)
Check to see if any of the differences between the means is greater than the CD.
12.1.7 Calculate Confidence Interval (CI)
\(\Large CI = (\bar X_a - \bar X_b)\ \pm\ CD\)
\(\Large CI = (\bar X_a - \bar X_c)\ \pm\ CD\)
\(\Large CI = (\bar X_b - \bar X_c)\ \pm\ CD\)
12.2 Tips
Draw a table like the one below to organize your calculations as you go.
Source | SS | df | MS | F |
---|---|---|---|---|
Between Conditions | 40 | 2 | 20 | 2 |
Error | 20 | 2 | 10 | - |
Across Subjects | 80 | 2 | - | - |
Total | 140 | 6 |
F is actually closely related to t: \(\Large F = t^2\)