Analysis of Variance 2 Flashcards

1
Q

What is the simple measure of effect size for ANOVA?

A

The η2 (eta-squared) statistic is conventional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you calculate η2 (eta-squared)?

A

By dividing SSb by SStot

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

In ANOVA, what does MSb/MSw represent?

A

The test-statistic (F)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you calculate etaSquared in R?

A

etSquared(x)

x = variable comtaining the groups

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you add effect size to your stat block for ANOVA’s?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the main problem with ANOVA’s?

A

They can tell us whether there is a difference, but it doesn’t tell us which group is better

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

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?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the problem with doing t-tests for every pair of groups in an ANOVA?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What can we do to solve the problem of doing t-tests for every pair of groups in an ANOVA?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the Bonferroni correction?

A

A way of obtaining the family-wise Type 1 error rate.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the weakness of the Bonferroni correction?

A

Very conservative

meaning you lose a ‘lot’ of power relative to more sophisticated methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the Holm correction?

A

A method to adjust the ‘family-wise’ correction method.

(recommended method to use)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you do the Holm correction in R?

A

posthocPairwiseT( x = model1)

model1 = variable containing ANOVA variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Do you need to make a family-wise correction when analysing lots of t-tests as a part of an ANOVA?

A

Yes, very important.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a post hoc test?

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a multiple test correction?

A

A method used to control your overall (e.g. family-wise) Type 1 error rate (e.g. Bonferroni, Holm)

When you’re running post hoc tests, you usually need to apply a multiple test correction

17
Q

If you have a specific hypothesis in mind (you are not doing a post hoc test by have a hypothesis) do you need to run a multiple test correction?

A

No

18
Q

What are the assumptions made in ANOVA tests?

A

1) Population distributions are normal (test using QQ plots and Shapiro-Wilk tests)

2) Homogeneity of variance across all groups (test with Levene’s test)

3) Independence of data

19
Q

What is the Levene test?

A

Used to check whether the different groups have the same standard deviation

20
Q

What is the R command for the Levene test?

A

leveneTest( model1 )

model1 = variable containing ANOVAs.

21
Q

In a Levene test, a significant result means that the groups have…

A

unequal variance

therefore your assumptions are violated