Home page for accesible maths 9.2 Interactions

Style control - access keys in brackets

Font (2 3) - + Letter spacing (4 5) - + Word spacing (6 7) - + Line spacing (8 9) - +

9.2.2 Interaction between a factor and a covariate

Continuing with the gas consumption example. Of interest is the relationship between outside temperature and gas consumption. We saw in Figure LABEL:gas_scatter2gas_scatter3 that the size of this relationship depends on whether or not the house has cavity wall insulation and we wrote this model formally as

𝔼[Yi]=β1+β2xi,1+β3xi,2+β4xi,1xi,2

where

  • 1

    The coefficient β2 is the size of the main effect of outside temperature on gas consumption

  • 2

    The coefficient β4 is the size of the interaction between the effect of outside temperature and whether or not insulation is installed.

To test whether or not there is an interaction, i.e. whether or not installing insulation has a significant effect on the relationship between outside temperature and gas consumption, we can test

H0:β4=0

vs.

H1:β40.

We have previously fitted this model in R,

gaslm <- lm(gas$Gas~gas$Temp*gas$Insulate2)

We will use the output from this model to speed up our testing procedure,

> summary(gaslm)
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept)             6.85383    0.11362  60.320  < 2e-16 ***
gas$Temp               -0.39324    0.01879 -20.925  < 2e-16 ***
gas$Insulate2          -2.26321    0.17278 -13.099 4.71e-16 ***
gas$Temp:gas$Insulate2  0.14361    0.04455   3.224  0.00252 **
---
Signif. codes:  0 â€˜***’ 0.001 â€˜**’ 0.01 â€˜*’ 0.05 â€˜.’ 0.1 â€˜ â€™ 1
Residual standard error: 0.2699 on 40 degrees of freedom
Multiple R-squared: 0.9359,     Adjusted R-squared: 0.9311
F-statistic: 194.8 on 3 and 40 DF,  p-value: < 2.2e-16

Find the standard error for β^4

Reading from the second column in the Coefficients table, this is 0.04455.

Calculate the test statistic

t=β^4-0se(β^4)=0.1440.04455=3.22

The value of this test statistic also appears in the output above (where?) What is the critical value?

Compare to t40(0.975)=2.021.

What do we conclude?

Since 3.22 > 2.021 there is evidence at the 5% level to reject H0, i.e. there was a significant change in the relationship between outside temperature and gas consumption following insulation.