Analysis of Variance 2 Flashcards
What is the simple measure of effect size for ANOVA?
The η2 (eta-squared) statistic is conventional
How do you calculate η2 (eta-squared)?
By dividing SSb by SStot
In ANOVA, what does MSb/MSw represent?
The test-statistic (F)
How do you calculate etaSquared in R?
etSquared(x)
x = variable comtaining the groups
How do you add effect size to your stat block for ANOVA’s?
What is the main problem with ANOVA’s?
They can tell us whether there is a difference, but it doesn’t tell us which group is better
What can we do to determine which group is better when ANOVA’s tell us that one group is but doesn’t specify which one?
1) This can be solved with descriptive statistics (e.g. boxplot())
2) Or can be done by doing t-tests for every pair of groups
What is the problem with doing t-tests for every pair of groups in an ANOVA?
As groups get larger more chance of running into the type 1 error rate (5%), you’re likely to get one if running 20 test
What can we do to solve the problem of doing t-tests for every pair of groups in an ANOVA?
This can be solved with the family-wise Type 1 error rate
Family wise is the probability of obtaining at least one Type 1 error among multiple tests
You need to “adjust” the raw p-values using a family-wise correction method
What is the Bonferroni correction?
A way of obtaining the family-wise Type 1 error rate.
What is the weakness of the Bonferroni correction?
Very conservative
meaning you lose a ‘lot’ of power relative to more sophisticated methods
What is the Holm correction?
A method to adjust the ‘family-wise’ correction method.
(recommended method to use)
How do you do the Holm correction in R?
posthocPairwiseT( x = model1)
model1 = variable containing ANOVA variables
Do you need to make a family-wise correction when analysing lots of t-tests as a part of an ANOVA?
Yes, very important.
What is a post hoc test?
A test that you conduct after you’ve done your ANOVA and for which you don’t have any particular hypothesis (e.g. pairwise t-tests run with no particular plan in mind)