Chapter 24
Comparing several means
- Use boxplots generated using
gf_boxplot
to compare samples from two more more populations.
- State the null and alternative hypotheses for a claim about equality amongst three or more population means.
- Explain why the alternative hypothesis of a “all means are equal” null hypothesis does not specify precisely which population means, if any, differ.
- Recognize that a test related to three or more population means is called an Analysis of Variance.
- Recognize the acronym ANOVA for Analysis of Variance.
The \(F\) statistic
- State the test statistic for a one-way ANOVA.
- Explain the effect on the \(F\)-statistic of increasing / decreasing the variability amongst the sample means and increasing / decreasing the variability within each sample.
- Indicate what values of an \(F\)-statistic indicate evidence against a null hypothesis.
- Given rug plots and box plots for several samples, indicate whether the \(F\)-statistic will be small or large.
- State the sampling distribution of the \(F\) statistic when the null hypothesis is true.
- State the type of \(P\)-value (right-sided, left-sided, or two-sided) computed from the \(F\) distribution, and explain why this type of \(P\)-value is used.
The analysis of variance \(F\) test
- Use the functions
aov
and summary
to perform an \(F\) test in R.
- Interpret the output of an
aov
object passed to summary
.
Conditions for ANOVA
- State the assumptions of a one-way ANOVA.
- State an alternative to a one-way ANOVA when the assumptions of the one-way ANOVA fail or cannot be checked.
Pairwise Comparisons (Lecture Notes for Lecture 21)
- Explain why pairwise comparisons are necessary after finding a statistically significant \(F\) statistic.
- Recognize Tukey’s Honest Significant Difference as a pairwise comparison method.
- Use the function
TukeyHSD
to perform pairwise comparsisons in R.
- Interpret the output of
TukeyHSD
when passed an output from aov
, including:
- the estimated pairwise differences
- the left and right confidence intervals for the pairwise differences
- the adjusted \(P\)-value for the pairwise comparisons
- State the null hypothesis implicit in the \(P\)-values reported by
TukeyHSD
.