Link Search Menu Expand Document (external link)

How to do a two-way ANOVA test with interaction (in R)

See all solutions.

Task

When we analyze the impact that two factors have on a response variable, we often consider the possible relationship between the two factors. That is, does their interaction term affect the response variable? A two-way ANOVA test with interaction can answer that question.

Related tasks:

Solution

We’re going to use R’s esoph dataset, about esophageal cancer cases. We will focus on the impact of age group (agegp) and alcohol consumption (alcgp) on the number of cases of the cancer (ncases). We ask, does the interaction between these two factors affect the number of cases?

First, we load in the dataset. (See how to quickly load some sample data.)

1
2
3
4
# install.packages("datasets") # if you have not already done this
library(datasets)
data <- esoph
head(data)
1
2
3
4
5
6
7
  agegp alcgp     tobgp    ncases ncontrols
1 25-34 0-39g/day 0-9g/day 0      40       
2 25-34 0-39g/day 10-19    0      10       
3 25-34 0-39g/day 20-29    0       6       
4 25-34 0-39g/day 30+      0       5       
5 25-34 40-79     0-9g/day 0      27       
6 25-34 40-79     10-19    0       7       

Next, we create a model that includes the response variable we care about, plus the two categorical variables we will be testing, as well as their interaction term.

1
2
# the * below means multiplication, to create an interaction term
model <- aov(ncases ~ agegp*alcgp, data = data)

A two-way ANOVA with interaction tests the following three null hypotheses.

  1. There is no interaction between the two categorical variables. (If we reject this we do not test the other two hypotheses.)
  2. The mean response is the same across all groups of the first factor. (In our example, that says the mean ncases is the same for all age groups.)
  3. The mean response is the same across all groups of the second factor. (In our example, that says the mean ncases is the same for all alcohol consumption groups.)

We choose a value, $0 \le \alpha \le 1$, as the Type I Error Rate. Let’s let $\alpha=0.05$ here.

1
summary(model)
1
2
3
4
5
6
7
            Df Sum Sq Mean Sq F value   Pr(>F)    
agegp        5  261.2   52.24  14.048 2.89e-09 ***
alcgp        3   52.7   17.57   4.723  0.00486 ** 
agegp:alcgp 15  107.6    7.17   1.928  0.03633 *  
Residuals   64  238.0    3.72                     
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

The $p$-value for the interaction of age group and alcohol consumption is in the third row, final column, $0.03633$. It is less than $\alpha$, so we can reject the null hypothesis that age group and alcohol consumption do not interact with regards to the number of esophageal cancer cases. That is, we have reason to believe that their interaction does effect the outcome.

As we stated when we listed the hypotheses to test, since we rejected the first null hypothesis, we will not test the other two. In the case where you failed to reject the first null hypothesis, you could consider each $p$-value in the first two rows of the above table, one for each of the two factors.

Content last modified on 24 July 2023.

See a problem? Tell us or edit the source.

Contributed by Elizabeth Czarniak (CZARNIA_ELIZ@bentley.edu)