Regression Models for Data Science in R
Regression Models for Data Science in R
Brian Caffo
This book is for sale at http://leanpub.com/regmods
This is a Leanpub book. Leanpub empowers authors and publishers with the Lean Publishing
process. Lean Publishing is the act of publishing an in-progress ebook using lightweight tools and
many iterations to get reader feedback, pivot until you have the right book and build traction once
you do.
Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
About this book . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
About the cover . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Before beginning . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Regression models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Motivating examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Summary notes: questions for this book . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Exploratory analysis of Galton’s Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
The math (not required) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
Comparing children’s heights and their parent’s heights . . . . . . . . . . . . . . . . . . . 8
Regression through the origin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Notation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
Some basic definitions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
Notation for data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
The empirical mean . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
The emprical standard deviation and variance . . . . . . . . . . . . . . . . . . . . . . . . 15
Normalization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
The empirical covariance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
Some facts about correlation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
Residuals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
Residual variation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
Properties of the residuals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
Estimating residual variation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
Summarizing variation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42
R squared . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
Regression inference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
Reminder of the model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
Review . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
Results for the regression parameters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
Example diamond data set . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
Getting a confidence interval . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
Prediction of outcomes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
Summary notes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
Adjustment . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
Experiment 1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
Experiment 2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
Experiment 3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
Experiment 4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
Experiment 5 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
Some final thoughts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 104
Regression models
Watch this video before beginning¹⁵
⁵https://www.coursera.org/course/regmods
⁶https://www.coursera.org/specialization/jhudatascience/1?utm_medium=courseDescripTop
⁷https://www.youtube.com/playlist?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
⁸https://www.coursera.org/course/rprog
⁹https://www.coursera.org/course/statinference
¹⁰https://leanpub.com/LittleInferenceBook
¹¹https://github.com/bcaffo/regmodsbook
¹²https://github.com/bcaffo/courses/tree/master/07_RegressionModels
¹³http://swirlstats.com
¹⁴https://github.com/swirldev/swirl_courses#swirl-courses
¹⁵https://www.youtube.com/watch?v=58ZPhK32sU8&index=1&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Introduction 3
Regression models are the workhorse of data science. They are the most well described, practical
and theoretically understood models in statistics. A data scientist well versed in regression models
will be able to solve and incredible array of problems.
Perhaps the key insight for regression models is that they produce highly interpretable model fits.
This is unlike machine learning algorithms, which often sacrifice interpretability for improved
prediction performance or automation. These are, of course, valuable attributes in their own rights.
However, the benefit of simplicity, parsimony and intrepretability offered by regression models (and
their close generalizations) should make them a first tool of choice for any practical problem.
Motivating examples
• “Data supports the claim that if Kobe stops ball hogging the Lakers will win more”
• “Linear regression suggests that an increase of 1% in % of shots taken by Kobe results in a drop
of 1.16 points (+/- 0.22) in score differential.”
In this book we will cover how to create summary statements like this using regression model
building. Note the nice interpretability of the linear regression model. With this model Rafa
numerically relates the impact of more shots taken on score differential.
An important aspect, especially in questions 2 and 3 is assessing modeling assumptions. For example,
it is important to figure out how/whether and what assumptions are needed to generalize findings
beyond the data in question. Presumably, if we find a relationship between parental and child
heights, we’d like to extend that knowledge beyond the data used to build the model. This requires
assumptions. In this book, we’ll cover the main assumptions necessary.
²⁰https://www.youtube.com/watch?v=1akVPR0LDsg&index=2&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Introduction 5
∑
n
(Yi − µ)2 .
i=1
This is physical center of mass of the histogram. You might have guessed that the answer µ = Ȳ .
This is called the least squares estimate for µ. It is the point that minimizes the sum of the squared
distances between the observed data and itself.
Note, if there was no variation in the data, every value of Yi was the same, then there would be no
error around the mean. Otherwise, our estimate has to balance the fact that our estimate of µ isn’t
going to predict every observation perfectly. Minimizing the average (or sum of the) squared errors
seems like a reasonable strategy, though of course there are others. We could minimize the average
Introduction 6
absolute deviation between the data µ (this leads to the median as the estimate instead of the mean).
However, minimizing the squared error has many nice properties, so we’ll stick with that for this
class.
Experiment
Let’s use rStudio’s manipulate to see what value of µ minimizes the sum of the squared deviations.
The code below allows you to create a slider to investigate estimates and their mean squared error.
library(manipulate)
myHist <- function(mu){
mse <- mean((galton$child - mu)^2)
g <- ggplot(galton, aes(x = child)) + geom_histogram(fill = "salmon", colour\
= "black", binwidth=1)
g <- g + geom_vline(xintercept = mu, size = 3)
g <- g + ggtitle(paste("mu = ", mu, ", MSE = ", round(mse, 2), sep = ""))
g
}
manipulate(myHist(mu), mu = slider(62, 74, step = 0.5))
∑
n ∑
n
(Yi − µ) =
2
(Yi − Ȳ + Ȳ − µ)2
i=1 i=1
∑n ∑
n ∑
n
= (Yi − Ȳ ) + 2
2
(Yi − Ȳ )(Ȳ − µ) + (Ȳ − µ)2
i=1 i=1 i=1
∑
n ∑
n ∑
n
= (Yi − Ȳ )2 + 2(Ȳ − µ) (Yi − Ȳ ) + (Ȳ − µ)2
i=1 i=1 i=1
∑
n ∑ n ∑n
= (Yi − Ȳ )2 + 2(Ȳ − µ)( Yi − nȲ ) + (Ȳ − µ)2
i=1 i=1 i=1
∑n ∑
n
= (Yi − Ȳ )2 + (Ȳ − µ)2
i=1 i=1
∑
n
≥ (Yi − Ȳ )2
i=1
²²https://www.youtube.com/watch?v=b34mXkyCH0I&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC&index=4
Introduction 9
The overplotting is clearly hiding some data. Here you can get the code ²³ to make the size and color
of the points be the frequency.
²³https://github.com/bcaffo/courses/blob/master/07_RegressionModels/01_01_introduction/index.Rmd
Introduction 10
∑
n
(Yi − Xi β)2 .
i=1
Introduction 11
Each Xi β is the vertical height of a line through the origin at point Xi . Thus, Yi − Xi β is the vertical
distance between the line at each observed Xi point (parental height) and the Yi (child height).
Our goal is exactly to use the origin as a pivot point and pick the line that minimizes the sum of the
squared vertical distances of the points to the line. Use R studio’s manipulate function to experiment
Subtract the means so that the origin is the mean of the parent and children heights.
The solution
In the next few lectures we’ll talk about why this is the solution. But, rather than leave you hanging,
here it is:
Coefficients:
I(parent - mean(parent))
0.646
Introduction 12
Let’s plot the best fitting line. In the subsequent chapter we will learn all about creating, interpreting
and performing inference on such mode fits. (Note that I shifted the origin back to the means of the
original data.) The results suggest that to every every 1 inch increase in the parents height, we
estimate a 0.646 inch increase in the child’s height.
Exercises
1. Consider the dataset given by x=c(0.725,0.429,-0.372 ,0.863). What value of mu minimizes
sum((x - mu)ˆ2)? Watch a video solution.²⁴
2. Reconsider the previous question. Suppose that weights were given, w = c(2, 2, 1, 1) so
that we wanted to minimize sum(w * (x - mu) ˆ 2) for mu. What value would we obtain?
Watch a video solution.²⁵
²⁴https://www.youtube.com/watch?v=Uhxm58rylec&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=1
²⁵https://www.youtube.com/watch?v=DS-Wl2dRxCA&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=2
Introduction 13
3. Take the Galton and obtain the regression through the origin slope estimate where the centered
parental height is the outcome and the child’s height is the predictor. Watch a video solution.²⁶
²⁶https://www.youtube.com/watch?v=IGVRkmrOrww&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=3
Notation
Watch this video before beginning²⁷
1∑
n
X̄ = Xi .
n i=1
Notice if we subtract the mean from data points, we get data that has mean 0. That is, if we define
X̃i = Xi − X̄.
then the mean of the X̃i is 0. This process is called centering the random variables. Recall from the
previous lecture that the empirical mean is the least squares solution for minimizing
∑
n
(Xi − µ)2
i=1
²⁷https://www.youtube.com/watch?v=T5UXxVKD0sA&index=5&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Notation 15
Normalization
We can combine centering and scaling of data as follows to get normalized data. In particular, the
data defined by:
Xi − X̄
Zi =
s
have empirical mean zero and empirical standard deviation 1. The process of centering then scaling
the data is called normalizing the data. Normalized data are centered at 0 and have units equal to
standard deviations of the original data. Example, a value of 2 from normalized data means that
data point was two standard deviations larger than the mean.
Normalization is very useful for creating data that comparable across experiments by getting rid of
any shifting or scaling effects.
This measure is of limited utility, since its units are the product of the units of the two variables. A
more useful definition normalizes the two variables first.
The correlation is defined as:
Notation 16
Cov(X, Y )
Cor(X, Y ) =
Sx Sy
where Sx and Sy are the estimates of standard deviations for the X observations and Y observations,
respectively. The correlation is simply the covariance of the separately normalized X and Y data.
Because the the data have been normalized, the correlation is a unit free quantity and thus has more
of a hope of being interpretable across settings.
Exercises
1. Take the Galton dataset and find the mean, standard deviation and correlation between the
parental and child heights. Watch a video solution.²⁸
2. Center the parent and child variables and verify that the centered variable means are 0. Watch
a video solution.²⁹
3. Rescale the parent and child variables and verify that the scaled variable standard deviations
are 1. Watch a video solution.³⁰
4. Normalize the parental and child heights. Verify that the normalized variables have mean 0
and standard deviation 1 and take the correlation between them. Watch a video solution.³¹
²⁸https://www.youtube.com/watch?v=6zq-excgkHg&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=4
²⁹https://www.youtube.com/watch?v=OT9tn_jtzus&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=5
³⁰https://www.youtube.com/watch?v=y32m9mjEQsk&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=6
³¹https://www.youtube.com/watch?v=D7LmrbjenZk&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=7
Ordinary least squares
Watch this video before beginning³²
Ordinary least squares (OLS) is the workhorse of statistics. It gives a way of taking complicated
outcomes and explaining behavior (such as trends) using linearity. The simplest application of OLS
is fitting a line.
Let’s try fitting the best line. Let Yi be the ith child’s height and Xi be the ith (average over the pair
of) parental heights. Consider finding the best line of the form
Let’s try using least squares by minimizing the following equation over β0 and β1 :
∑
n
{Yi − (β0 + β1 Xi )}2 .
i=1
Minimizing this equation will minimize the sum of the squared distances between the fitted line at
the pareNnts heights (β1 Xi ) and the observed child heights (Yi ).
The result actually has a closed form. Specifically, the least squares of the line:
Y = β0 + β1 X,
Ordinary least squares 19
through the data pairs (Xi , Yi ) with Yi as the outcome obtains the line Y = β̂0 + β̂1 X where:
Sd(Y )
β̂1 = Cor(Y, X) and β̂0 = Ȳ − β̂1 X̄.
Sd(X)
At this point, a couple of notes are in order. First, the slope, β̂1 , has the units of Y /X. Secondly, the
intercept, β̂0 , has the units of Y .
The line passes through the point (X̄, Ȳ ). If you center your Xs and Ys first, then the line will pass
through the origin. Moreover, the slope is the same one you would get if you centered the data,
(Xi − X̄, Yi − Ȳ ), and either fit a linear regression or regression through the origin.
To elaborate, regression through the origin, assuming that β0 = 0, yields the following solution to
the least squares criteria:
∑n
Xi Yi
β̂1 = ∑i=1
n 2
,
i=1 Xi
This is exactly the correlation times the ratio in the standard deviations if the both the Xs and Ys
have been centered first. (Try it out using R to verify this!)
It is interesting to think about what happens when you reverse the role of X and Y . Specifically, the
slope of the regression line with X as the outcome and Y as the predictor is Cor(Y, X)Sd(X)/Sd(Y ).
i −X̄
If you normalized the data, { X , Yi −Ȳ }, the slope is simply the correlation, Cor(Y, X), regardless
Sd(X) Sd(Y )
of which variable is treated as the outcome.
³³https://www.youtube.com/watch?v=O7cDyrjWBBc&index=7&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Ordinary least squares 20
We can see that the result of lm is identical to hard coding the fit ourselves. Let’s Reversing the
outcome/predictor relationship.
Now let’s show that regression through the origin yields an equivalent slope if you center the data
first
Now let’s show that normalizing variables results in the slope being the correlation.
The image below plots the data again, the best fitting line and standard error bars for the fit. We’ll
work up to that point later. But, understanding that our fitted line is estimated with error is an
important concept. You can find the code for the plot here³⁴.
³⁴https://github.com/bcaffo/courses/blob/master/07_RegressionModels/01_03_ols/index.Rmd
Ordinary least squares 21
Exercises
1. Install and load the package UsingR and load the father.son data with data(father.son).
Get the linear regression fit where the son’s height is the outcome and the father’s height is
the predictor. Give the intercept and the slope, plot the data and overlay the fitted regression
line. Watch a video solution.³⁶
³⁵https://www.youtube.com/watch?v=COVQX8WZVA8&index=8&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
³⁶https://www.youtube.com/watch?v=HH78kFrT-5k&index=8&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
Ordinary least squares 22
2. Refer to problem 1. Center the father and son variables and refit the model omitting the
intercept. Verify that the slope estimate is the same as the linear regression fit from problem
1. Watch a video solution.³⁷
3. Refer to problem 1. Normalize the father and son data and see that the fitted slope is the
correlation. Watch a video solution.³⁸
4. Go back to the linear regression line from Problem 1. If a father’s height was 63 inches, what
would you predict the son’s height to be? Watch a video solution.³⁹
5. Consider a data set where the standard deviation of the outcome variable is double that of
the predictor. Also, the variables have a correlation of 0.3. If you fit a linear regression model,
what would be the estimate of the slope? Watch a video solution.⁴⁰
6. Consider the previous problem. The outcome variable has a mean of 1 and the predictor has
a mean of 0.5. What would be the intercept? Watch a video solution.⁴¹
7. True or false, if the predictor variable has mean 0, the estimated intercept from linear
regression will be the mean of the outcome? Watch a video solution.⁴²
8. Consider problem 5 again. What would be the estimated slope if the predictor and outcome
were reversed? Watch a video solution.⁴³
³⁷https://www.youtube.com/watch?v=Bf0euQ_-CuE&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=10
³⁸https://www.youtube.com/watch?v=Bf0euQ_-CuE&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=10
³⁹https://www.youtube.com/watch?v=46eu_SrKVNE&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=11
⁴⁰https://www.youtube.com/watch?v=rRADoy09tXg&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=12
⁴¹https://www.youtube.com/watch?v=TRxhUJB2zfg&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=13
⁴²https://www.youtube.com/watch?v=XBXL70A9eDw&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=14
⁴³https://www.youtube.com/watch?v=kzmyzpHcNtg&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=15
Regression to the mean
Watch this video before beginning⁴⁴
library(UsingR)
data(father.son)
y <- (father.son$sheight - mean(father.son$sheight)) / sd(father.son$sheight)
x <- (father.son$fheight - mean(father.son$fheight)) / sd(father.son$fheight)
rho <- cor(x, y)
library(ggplot2)
g = ggplot(data.frame(x, y), aes(x = x, y = y))
g = g + geom_point(size = 5, alpha = .2, colour = "black")
g = g + geom_point(size = 4, alpha = .2, colour = "red")
g = g + geom_vline(xintercept = 0)
g = g + geom_hline(yintercept = 0)
g = g + geom_abline(position = "identity")
g = g + geom_abline(intercept = 0, slope = rho, size = 2)
g = g + geom_abline(intercept = 0, slope = 1 / rho, size = 2)
g = g + xlab("Father's height, normalized")
g = g + ylab("Son's height, normalized")
g
Regression to the mean 25
Let’s investigate the plot and the regression fits. If you had to predict a son’s normalized height, it
would be Cor(Y, X) ∗ Xi where Xi was the normalized father’s height. Conversely, if you had to
predict a father’s normalized height, it would be Cor(Y, X) ∗ Yi .
Multiplication by this correlation shrinks toward 0 (regression toward the mean). It is in this way
that Galton used regression to account for regression toward the mean. If the correlation is 1 there
is no regression to the mean, (if father’s height perfectly determines child’s height and vice versa).
Note since Galton’s original seminal paper, the idea of regression to the mean has been generalized
and expanded upon. However, the core remains. In paired measurements, if there’s randomness then
the extreme values of one element of the pair will be likely less extreme in the other element.
The number of applications of this phenomena is staggering. Some financial advisors recommend
putting your money in your worst performing fund because of regression to the mean. (If there’s
a lot of noise, those are the most likely to gain in value.) An example that I’ve run into is that
students performing the best on midterm exams often do much worse on the final. Athletes often
follow a phenomenal season with merely a good season. It’s a useful exercise to think whenever
paired observations are being evaluated whether real intrinsic properties are being discussed, or just
Regression to the mean 26
Exercises
1. You have two noisy scales and a bunch of people that you’d like to weigh. You weigh each
person on both scales. The correlation was 0.75. If you normalized each set of weights, what
would you have to multiply the weight on one scale to get a good estimate of the weight on
the other scale? Watch a video solution.⁴⁵
2. Consider the previous problem. Someone’s weight was 2 standard deviations above the mean
of the group on the first scale. How many standard deviations above the mean would you
estimate them to be on the second? Watch a video solution.⁴⁶
3. You ask a collection of husbands and wives to guess how many jellybeans are in a jar. The
correlation is 0.2. The standard deviation for the husbands is 10 beans while the standard
deviation for wives is 8 beans. Assume that the data were centered so that 0 is the mean for
each. The centered guess for a husband was 30 beans (above the mean). What would be your
best estimate of the wife’s guess? Watch a video solution.⁴⁷
⁴⁵https://youtu.be/rZsnJ0EzVHo
⁴⁶http://youtu.be/2lHYXeRl0eg
⁴⁷https://youtu.be/htFH-4-vjS8
Statistical linear regression models
Watch this video before beginning⁴⁸
Up to this point, we’ve only considered estimation. Estimation is useful, but we also need to know
how to extend our estimates to a population. This is the process of statistical inference. Our approach
to statistical inference will be through a statistical model. At the bare minimum, we need a few
distributional assumptions on the errors. However, we’ll focus on full model assumptions under
Gaussianity.
Yi = β0 + β1 Xi + ϵi
Here, the ϵi are assumed to be independent and identically distributed as N (0, σ 2 ). Under this model,
E[Yi | Xi = xi ] = µi = β0 + β1 xi
and
V ar(Yi | Xi = xi ) = σ 2 .
This model implies that the Yi are independent and normally distributed with means β0 + β1 xi and
variance σ 2 . We could write this more compactly as
Yi | Xi = xi ∼ N (β0 + β1 xi , σ 2 ).
While this specification of the model is a perhaps better for advanced purposes, specifying the
model as linear with additive error terms is generally more useful. With that specification, we can
hypothesize and discuss the nature of the errors. In fact, we’ll even cover ways to estimate them to
investigate our model assumption.
Remember that our least squares estimates of β0 and β1 are:
⁴⁸https://www.youtube.com/watch?v=ewS1Kkzl8mw&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC&index=10
Statistical linear regression models 28
Sd(Y )
β̂1 = Cor(Y, X) and β̂0 = Ȳ − β̂1 X̄.
Sd(X)
It is convenient that under our Gaussian additive error model that the maximum likelihood estimates
of β0 and β1 are the least squares estimates.
E[Y |X = 0] = β0 + β1 × 0 = β0 .
Note, the intercept isn’t always of interest. For example, when X = 0 is impossible or far outside
of the range of data. Take as a specific instance, when X is blood pressure, no one is interested in
studying blood pressure’s impact on anything for values near 0.
There is a way to make your intercept more interpretable. Consider that:
Therefore, shifting your X values by value a changes the intercept, but not the slope. Often a is set
to X̄, so that the intercept is interpreted as the expected response at the average X value.
Notice that the interpretation of β1 is tied to the units of the X variable. Let’s consider the impact of
changing the units.
β1
Yi = β0 + β1 Xi + ϵi = β0 + (Xi a) + ϵi = β0 + β̃1 (Xi a) + ϵi
a
⁴⁹https://www.youtube.com/watch?v=71dDzKPYEdU&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC&index=11
Statistical linear regression models 29
β̂0 + β̂1 X
In other words, just find the Y value on the line with the corresponding X value. Regression,
especially linear regression, often doesn’t produce the best prediction algorithms. However, it
produces parsimonious and interpretable models along with the predictions. Also, as we’ll see later
we’ll be able to get easily described estimates of uncertainty associated with our predictions.
Example
Let’s analyze the diamond data set from the UsingR package. The data is diamond prices (in Singapore
dollars) and diamond weight in carats. Carats are a standard measure of diamond mass, 0.2 grams.
To get the data use library(UsingR); data(diamond)
First let’s plot the data. Here’s the code I used
⁵⁰https://www.youtube.com/watch?v=5isJA7T5_VE&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC&index=12
Statistical linear regression models 30
library(UsingR)
data(diamond)
library(ggplot2)
g = ggplot(diamond, aes(x = carat, y = price))
g = g + xlab("Mass (carats)")
g = g + ylab("Price (SIN $)")
g = g + geom_point(size = 7, colour = "black", alpha=0.5)
g = g + geom_point(size = 5, colour = "blue", alpha=0.2)
g = g + geom_smooth(method = "lm", colour = "black")
g
First, let’s fit the linear regression model. This is done with the lm function in R (lm stands for linear
model). The syntax is lm(Y ∼ X) where Y is the response and X is the predictor.
Statistical linear regression models 31
The function coef grabs the fitted coefficients and conveniently names them for you. Therefore,
we estimate an expected 3721.02 (SIN) dollar increase in price for every carat increase in mass of
diamond. The intercept -259.63 is the expected price of a 0 carat diamond.
We’re not interested in 0 carat diamonds (it’s hard to get a good price for them ;-). Let’s fit the model
with a more interpretable intercept by centering our X variable.
Thus the new intercept, 500.1, is the expected price for the average sized diamond of the data (0.2042
carats). Notice the estimated slope didn’t change at all.
Now let’s try changing the scale. This is useful since a one carat increase in a diamond is pretty big.
What about changing units to 1/10th of a carat? We can just do this by just dividing the coefficient
by 10, no need to refit the model.
Thus, we expect a 372.102 (SIN) dollar change in price for every 1/10th of a carat increase in mass
of diamond.
Let’s show via R that this is the same as rescaling our X variable and refitting. To go from 1 carat to
1/10 of a carat units, we need to multiply our data by 10.
Now, let’s predicting the price of a diamond. This should be as easy as just evaluating the fitted line
at the price we want to
Therefore, we predict the price to be 335.7, 745.1 and 1005.5 for a 0.16, 0.26 and 0.34 carat diamonds.
Of course, our prediction models will get more elaborate and R has a generic function, predict, to
put our X values into the model for us. This is generally preferable and less The data has to go into
the model as a data frame with the same named X variables.
Statistical linear regression models 32
Let’s visualize our prediction. In the following plot, the predicted values at the observed Xs are the
red points on the fitted line. The new X values are the at vertical lines, which are connected to the
predicted values via the connected horizontal lines.
Exercises
1. Fit a linear regression model to the father.son dataset with the father as the predictor and
the son as the outcome. Give a p-value for the slope coefficient and perform the relevant
hypothesis test. Watch a video solution.⁵¹
2. Refer to question 1. Interpret both parameters. Recenter for the intercept if necessary. Watch
a video solution.⁵²
⁵¹https://www.youtube.com/watch?v=LxA2x2VvPWo&index=19&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁵²https://www.youtube.com/watch?v=YtXTK9ztE00&index=20&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
Statistical linear regression models 33
3. Refer to question 1. Predict the son’s height if the father’s height is 80 inches. Would you
recommend this prediction? Why or why not? Watch a video solution.⁵³
4. Load the mtcars dataset. Fit a linear regression with miles per gallon as the outcome and
horsepower as the predictor. Interpret your coefficients, recenter for the intercept if necessary.
Watch a video solution.⁵⁴
5. Refer to question 4. Overlay the fit onto a scatterplot. Watch a video solution.⁵⁵
6. Refer to question 4. Test the hypothesis of no linear relationship between horsepower and
miles per gallon. Watch a video solution.⁵⁶
7. Refer to question 4. Predict the miles per gallon for a horsepower of 111. Watch a video
solution.⁵⁷
⁵³https://www.youtube.com/watch?v=kB95XqatMho&index=21&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁵⁴https://www.youtube.com/watch?v=4yc5ACmtYMw&index=22&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁵⁵https://www.youtube.com/watch?v=mhskQnUIVO4&index=23&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁵⁶https://www.youtube.com/watch?v=zjP82piLr1E&index=24&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁵⁷https://www.youtube.com/watch?v=UxSrHtY_klY&index=25&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
Residuals
Watch this video before beginning⁵⁸
Residual variation
Residuals represent variation left unexplained by our model. We emphasize the difference between
residuals and errors. The errors unobservable true errors from the known coefficients, while residuals
are the observable errors from the estimated coefficients. In a sense, the residuals are estimates of
the errors.
Consider again the diamond data set from UsingR. Recall that the data is diamond prices (Singapore
dollars) and diamond weight in carats (standard measure of diamond mass, 0.2 $g$). To get the data
use library(UsingR); data(diamond). Recall the data and our linear regression fit looked like the
following:
⁵⁸https://www.youtube.com/watch?v=5vu-rW_FI0E&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC&index=13
Residuals 35
Yi = β0 + β1 Xi + ϵi
where we are assuming that ϵi ∼ N (0, σ 2 ). Our observed outcome is Yi with associated predictor
value, Xi . Let’s label the predicted outcome for index i as Ŷi . Recall that we obtain our predictions
by plugging our observed Xi into the linear regression equation:
The residual is defined as the difference the between the observed and predicted outcome
ei = Yi − Ŷi .
The residuals are exactly the vertical distance between the observed data point and the associated
point on the regression line. Positive residuals have associated Y values above the fitted line and
negative residuals have values below.
Residuals 36
Picture of the residuals for the diamond data. Residuals are the signed length of the red lines.
∑
Least squares minimizes the sum of the squared residuals, ni=1 e2i . Note that the ei are observable,
while the errors, ϵi are not. The residuals can be thought of as estimates of the errors.
Finally, we should note the different sorts of variation one encounters in regression. There’s the
total variability in our response, usually called total variation. One then differentiates residual
variation (variation after removing the predictor) from systematic variation (variation explained
by the regression model). These two kinds of variation add up to the total variation, which we’ll see
later.
Example
Watch this video before beginning⁵⁹
The code below shows how to obtain the residuals.
> data(diamond)
> y <- diamond$price; x <- diamond$carat; n <- length(y)
> fit <- lm(y ~ x)
## The easiest way to get the residuals
> e <- resid(fit)
## Obtain the residuals manually, get the predicted Ys first
> yhat <- predict(fit)
## The residuals are y - yhat. Let's check by comparing this
## with R's build in resid function
> max(abs(e -(y - yhat)))
[1] 9.486e-13
## Let's do it again hard coding the calculation of Yhat
max(abs(e - (y - coef(fit)[1] - coef(fit)[2] * x)))
[1] 9.486e-13
Residuals versus X
A useful plot is the residuals versus the X values. This allows us to zoom in on instances of poor
model fit. Whenever we look at a residual plot, we are searching for systematic patterns of any sort.
Here’s the plot for diamond data.
⁵⁹https://www.youtube.com/watch?v=DSsSwKJ9frg&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC&index=14
Residuals 38
Let’s go through some more contrived examples to highlight Here’s a plot of nonlinear data where
we’ve fit a line.
Residuals 39
Another common feature where our model fails is when the variance around the regression line
is not constant. Remember our errors are assumed to be Gaussian with a constant error. Here’s an
example where heteroskedasticity is not at all apparent in the scatterplot.
Residuals versus X.
If we look at the residual plot for the diamond data, things don’t look so bad.
Residuals versus X.
have a zero mean (if an intercept is included), this is close to the the calculating the variance of the
residuals. However, to obtain unbiasedness, most people use
1 ∑ 2
n
2
σ̂ = e.
n − 2 i=1 i
Diamond example
Summarizing variation
A way to think about regression is in the decomposition of variability of our response. The total
variability in our response is the variability around an intercept. This is also the variance estimate
from a model with only an intercept:
∑
n
Total variability = (Yi − Ȳ )2
i=1
The regression variability is the variability that is explained by adding the predictor. Mathematically,
this is:
Residuals 43
∑n
Regression variabilty = i=1 (Ŷi − Ȳ )2 .
The residual variability is what’s leftover around the regression line
∑
n
Residual variability = (Yi − Ŷi )2
i=1
It’s a nice fact that the error and regression variability add up to the total variability:
∑
n ∑
n ∑
n
(Yi − Ȳ ) =2
(Yi − Ŷi ) +
2
(Ŷi − Ȳ )2
i=1 i=1 i=1
Thus, we can think of regression as explaining away variability. The fact that all of the quantities
are positive and that they add up this way allows us to define the proportion of the total variability
explained by the model.
Consider our diamond example again. The plot below shows the variation explained by a model
with an intercept only (representing total variation) and that when the mass is included as a linear
predictor. Notice how much the variation decreases when including the diamond mass.
Here’s the code:
Residuals for intercept only and linear regression for the diamond example.
R squared
R squared is the percentage of the total variability that is explained by the linear relationship with
the predictor
∑n
(Ŷi − Ȳ )2
R = ∑i=1
2
i=1 (Yi − Ȳ )
n 2
Anscombe’s residual (named after their inventor) are a famous example of our R squared doesn’t
tell the whole story about model fit. In this example, four data sets have equivalent R squared values
and beta values, but dramatically different model fits. The result is to suggest that reducing data to
a single number, be it R squared, a test statistic or a P-value, often masks important aspects of the
data. The code is quite simple: data(anscombe);example(anscombe).
Residuals 45
Exercises
1. Fit a linear regression model to the father.son dataset with the father as the predictor and
the son as the outcome. Plot the son’s height (horizontal axis) versus the residuals (vertical
axis). Watch a video solution.⁶¹
2. Refer to question 1. Directly estimate the residual variance and compare this estimate to the
output of lm. Watch a video solution.⁶²
3. Refer to question 1. Give the R squared for this model. Watch a video solution.⁶³
4. Load the mtcars dataset. Fit a linear regression with miles per gallon as the outcome and
horsepower as the predictor. Plot horsepower versus the residuals. Watch a video solution.⁶⁴
5. Refer to question 4. Directly estimate the residual variance and compare this estimate to the
output of lm. Watch a video solution.⁶⁵
6. Refer to question 4. Give the R squared for this model. Watch a video solution.⁶⁶
⁶¹https://www.youtube.com/watch?v=WnFuqlS3vvc&index=26&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁶²https://www.youtube.com/watch?v=M5scUi6JTCI&index=27&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁶³https://www.youtube.com/watch?v=A3IqBqjbVjo&index=28&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁶⁴https://www.youtube.com/watch?v=g0YPXDpQ15s&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=29
⁶⁵https://www.youtube.com/watch?v=R_RPGz4UpO4&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=30
⁶⁶https://www.youtube.com/watch?v=eavifxTZgfQ&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=31
Regression inference
Watch this before beginning.⁶⁷
In this chapter, we’ll consider statistical inference for regression models.
Yi = β0 + β1 Xi + ϵi
where ϵ ∼ N (0, σ 2 ). Let’s consider some ways for doing inference for our regression parameters.
For this development, we assume that the true model is known. We also assume that you’ve seen
confidence intervals and hypothesis tests before. If not, consider taking the Statistical Inference
course and book before approaching this material.
Remember our estimates:
β̂0 = Ȳ − β̂1 X̄
and
Sd(Y )
β̂1 = Cor(Y, X) .
Sd(X)
Review
Let’s review some important components of statistical inference. Consider statistics like the
following:
θ̂ − θ
σ̂θ̂
where θ̂ is an estimate of interest, θ is the estimand of interest and σ̂θ̂ is the standard error of θ̂. We
see that in many cases such statistics often have the following properties:
⁶⁷https://www.youtube.com/watch?v=vSdws014e4k&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC&index=16
Regression inference 47
1. They are normally distributed and have a finite sample Student’s T distribution under
normality assumptions.
2. They can be used to test H0 : θ = θ0 versus Ha : θ >, <, ̸= θ0 .
3. They can be used to create a confidence interval for θ via θ̂ ± Q1−α/2 σ̂θ̂ where Q1−α/2 is the
relevant quantile from either a normal or T distribution.
In the case of regression with iid Gaussian sampling assumptions on the errors, our inferences will
follow very similarly to what you saw in your inference class.
We won’t cover asymptotics for regression analysis, but suffice it to say that under assumptions on
the ways in which the X values are collected, the iid sampling model, and mean model, the normal
results hold to create intervals and confidence intervals
∑
n
σβ̂21 = V ar(β̂1 ) = σ 2 / (Xi − X̄)2
i=1
and
( )
1 X̄ 2
σβ̂20 = V ar(β̂0 ) = + ∑n σ2
i=1 (Xi − X̄)
n 2
In practice, σ is replaced by its residual variance estimate covered in the last chapter.
Given how often this came up in inference, it’s probably not surprising that under iid Gaussian
errors
β̂j − βj
σ̂β̂j
follows a t distribution with n-2 degrees of freedom and a normal distribution for large n. This can
be used to create confidence intervals and perform hypothesis tests.
library(UsingR); data(diamond)
y <- diamond$price; x <- diamond$carat; n <- length(y)
beta1 <- cor(y, x) * sd(y) / sd(x)
beta0 <- mean(y) - beta1 * mean(x)
e <- y - beta0 - beta1 * x
sigma <- sqrt(sum(e^2) / (n-2))
ssx <- sum((x - mean(x))^2)
Now let’s calculate the standard errors for our regression coefficients and the t statistic. The natural
null hypotheses are H0 : βj = 0. So our t statistics are just the estimates divided by their standard
errors.
Now let’s consider getting P-values. Recall that P-values are the probability of getting a statistic as
or larger than was actually obtained, where the probability is calculated under the null hypothesis.
Below I also do some formatting to get it to look like the output from lm.
So the first column are the actual estimates. The second is the standard errors, the third is the t value
(the first divided by the second) and the final is the t probability of getting an unsigned statistic that
large under the null hypothesis (the P-value for the two sided test). Of course, we don’t actually go
through this exercise every time; lm does it for us.
Regression inference 49
Remember, we reject if our P-value is less than our desired type I error rate. In both cases the test is
for whether or not the parameter is zero. This is almost always of interest for the slope, but frequently
a zero intercept isn’t of interest so that P-value is often disregarded.
For the slope, a value of zero represents no linear relationship between the predictor and response.
So, the P-value is for performing a test of whether any (linear) relationship exist or not.
So, we would interpret this as: “with 95% confidence, we estimate that a 0.1 carat increase in diamond
size results in a 355.6 to 388.6 increase in price in (Singapore) dollars”.
Prediction of outcomes
Watch this before beginning⁶⁹
Finally, let’s consider prediction again. Consider the problem of predicting Y at a value of X. In our
example, this is predicting the price of a diamond given the carat.
We’ve already covered that the estimate for prediction at point x0 is:
⁶⁹https://www.youtube.com/watch?v=aMirqYW6VrY&index=18&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Regression inference 50
β̂0 + β̂1 x0
A standard error is needed to create a prediction interval. This is important, since predictions by
themselves don’t convey anything about how accurate we would expect the prediction to be. Take
our diamond example. Because the model fits so well, we would be surprised if we tried to sell a
diamond and the offers were well off our model prediction (since it seems to fit quite well).
There’s a subtle, but important, distinction between intervals for the regression line at point x0 and
the prediction of what a y would be at point x0 . What differs is the standard error:
For the line at x0 the standard error is,
√
1 (x0 − X̄)2
σ̂ + ∑n
i=1 (Xi − X̄)
n 2
Notice that the prediction interval standard error is a little large than error for a line. Think of it this
way. If we want to predict a Y value at a particular X value, and we knew the actual true slope and
intercept, there would still be error. However, if we only wanted to predict the value at the line at
that X value, there would be no variance, since we already know the line.
Thus, the variation for the line only considers how hard it is to estimate the regression line at that
X value. The prediction interval includes that variation, as well as the extra variation unexplained
by the relationship between Y and X. So, it has to be a little wider.
For the diamond example, here’s both the mean value and prediction interval. (code and plot).
Notice that to get the various intervals, one has to use one of the options interval="confidence"
or interval="prediction" in the prediction function.
library(ggplot2)
newx = data.frame(x = seq(min(x), max(x), length = 100))
p1 = data.frame(predict(fit, newdata= newx,interval = ("confidence")))
p2 = data.frame(predict(fit, newdata = newx,interval = ("prediction")))
p1$interval = "confidence"
p2$interval = "prediction"
p1$x = newx$x
p2$x = newx$x
dat = rbind(p1, p2)
names(dat)[1] = "y"
Regression inference 51
Summary notes
• Both intervals have varying widths.
– Least width at the mean of the Xs.
• We are quite confident in the regression line, so that interval is very narrow.
– If we knew β0 and β1 this interval would have zero width.
• The prediction interval must incorporate the variability in the data around the line.
– Even if we knew β0 and β1 this interval would still have width. *
Regression inference 52
Exercises
1. Test whether the slope coefficient for the father.son data is different from zero (father as
predictor, son as outcome). Watch a video solution.⁷⁰
2. Refer to question 1. Form a confidence interval for the slope coefficient. Watch a video
solution⁷¹
3. Refer to question 1. Form a confidence interval for the intercept (center the fathers’ heights
first to get an intercept that is easier to interpret). Watch a video solution.⁷²
4. Refer to question 1. Form a mean value interval for the expected son’s height at the average
father’s height. Watch a video solution.⁷³
5. Refer to question 1. Form a prediction interval for the son’s height at the average father’s
height. Watch a video solution.⁷⁴
6. Load the mtcars dataset. Fit a linear regression with miles per gallon as the outcome
and horsepower as the predictor. Test whether or not the horsepower power coefficient is
statistically different from zero. Interpret your test.
7. Refer to question 6. Form a confidence interval for the slope coefficient.
8. Refer to quesiton 6. Form a confidence interval for the intercept (center the HP variable first).
9. Refer to question 6. Form a mean value interval for the expected MPG for the average HP.
10. Refer to question 6. Form a prediction interval for the expected MPG for the average HP.
11. Refer to question 6. Create a plot that has the fitted regression line plus curves at the expected
value and prediction intervals.
⁷⁰https://www.youtube.com/watch?v=6hkBsUAQU7E&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=32
⁷¹https://www.youtube.com/watch?v=eExHWvQImEE&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=33
⁷²https://www.youtube.com/watch?v=GeDmfhm2bhc&index=34&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁷³https://www.youtube.com/watch?v=dLV_Jopsbl4&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=35
⁷⁴https://www.youtube.com/watch?v=-rx-71QsUnY&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=36
Multivariable regression analysis
Watch this before beginning.⁷⁵
In this chapter we extend linear regression so that our models can contain more variables. A natural
first approach is to assume additive effects, basically extending our linear model to a plane or
hyperplane. This technique represents one of the most widely used and successful methods in
statistics.
∑
p
Yi = β1 X1i + β2 X2i + . . . + βp Xpi + ϵi = Xik βj + ϵi
k=1
Here X1i = 1 typically, so that an intercept is included. Least squares (and hence ML estimates
under iid Gaussianity of the errors) minimizes:
( )2
∑
n ∑
p
Yi − Xki βj
i=1 k=1
2 2 2
Yi = β1 X1i + β2 X2i + . . . + βp Xpi + ϵi
is still a linear model. We’ve just squared the elements of the predictor variables.
Estimation
Watch this before beginning⁷⁶
Recall, the LS estimate for regression through the origin is,
∑ ∑
E[Yi ] = X1i β1 , was Xi Yi / Xi2 .
Let’s consider two regressors, E[Yi ] = X1i β1 + X2i β2 = µi . Least squares tries to minimize:
∑
n
(Yi − X1i β1 − X2i β2 )2
i=1
We describe fitting with two regressors using residuals, since it will help us to understand how
multivariable regression adjusts an effect for another variable. The result is that the estimate for β1
is:
∑n
e e
∑n i,Y |X2 2 i,X1 |X2 ,
β̂1 = i=1
i=1 ei,X1 |X2
where, ei,Y |X2 is the residual having fit X2 on Y and ei,X1 |X2 is the residual having fit X2 on Y . That
is, the regression estimate for β1 is the regression through the origin estimate having regressed X2
out of both the response and the predictor. Similarly, the regression estimate for β2 is the regression
through the origin estimate having regressed X1 out of both the response and the predictor.
⁷⁶https://www.youtube.com/watch?v=BbsDGRLhluA&index=20&list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Multivariable regression analysis 55
More generally, multivariate regression estimates are exactly those having removed the linear
relationship of the other variables from both the regressor and response. This demonstrates the
sense in which multivariate regression variables adjust for the effect of the other variables.
Yi = β1 X1i + β2 X2i
where X2i = 1 is an intercept term. Let’s double check our rule, since we already know what the
least squares estimates are in this case.
Notice the fitted coefficient of X2i on Yi is Ȳ , the mean of the Ys. Then the residuals are ei,Y |X2 =
Yi − Ȳ .
Similarly, the fitted coefficient of X2i on X1i is X̄1 . Then, the residuals are ei,X1 |X2 = X1i − X̄1 .
Thus let’s work out the estimate for β1 :
∑n ∑n
i=1 ei,Y |X2 ei,X1 |X2 (X − X̄)(Yi − Ȳ ) Sd(Y )
β̂1 = ∑n 2 ∑n i
= i=1 = Cor(X, Y )
i=1 (Xi − X̄)
2
i=1 ei,X1 |X2 Sd(X)
∑
n
(Yi − X1i β1 − . . . − Xpi βp )2
i=1
The least squares estimate for the coefficient of a multivariate regression model is exactly regression
through the origin with the linear relationships with the other regressors removed from both
the regressor and outcome by taking residuals. In this sense, multivariate regression “adjusts” a
coefficient for the linear impact of the other variables.
Of course, we don’t fit multivariate regression models in this way ever in practice, we rely on
software like lm. In fact, the programs that fit multivariate regression don’t do it this way either.
However, thinking in the terms of residuals is the most conceptually useful way to think about what
multivariate regression is accomplishing.
Multivariable regression analysis 56
Simulation demonstrations
Watch this video demonstration.⁷⁷
Let’s do some simulation exercises to convince ourselves how multivariable regression works.
You can see that the estimate, 1.009, is obtained by the recipe we outlined; and it agrees with the
function lm produces for us.
∑
p
E[Y |X1 = x1 , . . . , Xp = xp ] = xk βk .
k=1
∑
p
E[Y |X1 = x1 + 1, . . . , Xp = xp ] = (x1 + 1)β1 + xk βk
k=2
∑p
∑
p
E[Y |X1 = x1 +1, . . . , Xp = xp ]−E[Y |X1 = x1 , . . . , Xp = xp ] = (x1 +1)β1 + xk βk + xk βk = β1
k=2 k=1
Thus, the interpretation of a multivariate regression coefficient is the expected change in the
response per unit change in the regressor, holding all of the other regressors fixed. The latter part of
the phrase is important, by holding the other regressors constant, we are investigating an adjusted
effect, just like we described in the smoking and breath mint useage example at the beginning of the
chapter.
In the next chapter, we’ll do examples and go over context-specific interpretations.
∑
p
Yi = Xik βk + ϵi
k=1
∑
p
Ŷi = Xik β̂k .
k=1
ei = Yi − Ŷi
1 ∑ 2
n
2
σ̂ = e
n − p i=1 i
Multivariable regression analysis 58
To get predicted responses at new values, x1 , . . . , xp , simply plug them into the linear model
∑p
k=1 xk β̂k .
β̂k − βk
σ̂β̂k
follows a t distribution with n − p degrees of freedom. Predicted responses have standard errors and
we can calculate predicted and expected response intervals.
Exercises
1. Load the dataset Seatbelts as part of the datasets package via data(Seatbelts). Use
as.data.frame to convert the object to a dataframe. Fit a linear model of driver deaths with
kms and PetrolPrice as predictors. Interpret your results. Watch a video Solution⁷⁸
2. Predict the number of driver deaths at the average kms and petrol levels. Watch a video
solution.⁷⁹
3. Take the residual for DriversKilled having regressed out kms and an intercept Watch a video
solution.⁸⁰ and the residual for PetrolPrice having regressed out kms and an intercept. Fit
a regression through the origin of the two residuals and show that it is the same as your
coefficient obtained in question 1.
4. Take the residual for DriversKilled having regressed out PetrolPrice and an intercept.
Take the residual for kms having regressed out PetrolPrice and an intercept. Fit a regression
through the origin of the two residuals and show that it is the same as your coefficient obtained
in question 1.
⁷⁸https://www.youtube.com/watch?v=xcJKPyiuSMo&index=37&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁷⁹https://www.youtube.com/watch?v=2PO8djtbDU8&index=38&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁸⁰https://www.youtube.com/watch?v=9NS9ue8Tzm4&index=39&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
Multivariable examples and tricks
Watch this video before beginning.⁸¹
In this chapter we cover a few examples of multivariate regression in order to get a hands on sense
of the basics.
Agriculture is expressed in percentages (0 - 100), representing the percentage of the male population
involved in agriculture.
The regression slope estimate for this variable is -0.1721. We interpret this coefficients as follows:
Our models estimates an expected 0.17 decrease in standardized fertility for every 1% increase in
percentage of males involved in agriculture in holding the remaining variables constant.
Note that the the t-test for H0 : βAgri = 0 versus Ha : βAgri ̸= 0 is significant since 0.0187 is
less that typical benchmarks (0.05, for exaple). Note that, by default, R is reporting the P-value for
the two sided test. If you want the one sided test, calculate it directly using the T-statistic and the
degrees of freedom. (You can figure it out from the two sided P-value, but it’s easy to get tripped up
with signs.)
Interestingly, the unadjusted estimate is
Multivariable examples and tricks 61
Notice that the sign of the slope estimate reversed! This is an example of so-called “Simpson’s
Paradox”. This purported paradox (which is actually not a paradox at all) simply points out that
unadjusted and adjusted effects can be the reverse of each other. Or in other words, the apparent
relationship between X and Y may change if we account for Z. Let’s explore multivariate adjustment
and sign reversals with simulation.
Simulation study
Below we simulate 100 random variables with a linear relationship between X1, X2 and Y. Notably,
we generate X1 as a linear function of X2. In this simulation, X1 has a negative adjusted effect on
Y while X2 has a positive adjusted effect (adjusted referring to the effect including both variables).
However, X1 is related to X2. Notice our unadjusted effect of X1 is of the opposite sign (and way off),
while the adjusted one is about right. What’s happening? Our unadjusted model is picking up the
effect X2 as as it’s represented in X1. Play around with the generating coefficients to see how you
can make the estimated relationships very different than the generating ones. More than anything,
this illustrates that multivariate modeling is hard stuff.
To confirm what’s going on, let’s look at some plots. In the left panel, we plot Y versus X1. Notice
the positive relationship. However, if we look at X2 (the color) notice that it clearly goes up with Y
as well. If we adjust both the X1 and Y variable by taking the residual after having regressed X2, we
get the actual correct relationship between X1 and Y.
Multivariable examples and tricks 62
a linear combination of variables already included. R just drops terms that are linear combinations
of other terms.
Coefficients:
(Intercept) Agriculture Examination Education \
Catholic
66.915 -0.172 -0.258 -0.871 \
0.104
Infant.Mortality z
1.077 NA
This is a fundamental point of multivariate regression: regression models fit the linear space of the
regressors. Therefore, any linear reorganization of the regressors will result in an equivalent fit, with
different covariates of course. However, the percentage of the variance explained in the response will
be constant. It is only through adding variables that are not perfectly explained by the existing ones
that one can explain more variation in the response. So, for example, models with covariates i) X
and Z, ii) X+Z and X-Z and iii) 2X and 4Z will all explain the same amount of variation in Y. A third
variable, W say, will only explain more variation in Y if it’s not perfectly explained by X and Z. R
lets you know when you’ve done this by putting redundant variables as having NA coefficients.
Yi = β0 + Xi1 β1 + ϵi
in the mean comparing those in the group to those not. The T-test for that coefficient is exactly the
two group T test with a common variance.
Finally, note including a binary variable that is 1 for those not in the group would be redundant,
it would create three parameters to describe two means. Moreover, we know from the last section
that including redundant variables will result in R just setting one of them to NA. We know that
the intercept column is a column of ones, the group variable is one for those in the group while a
variable for those not in the group would just be the subtraction of these two. Thus, it’s linearly
redundant and unnecessary.
Yi = β0 + Xi1 β1 + Xi2 β2 + ϵi .
Here the variable Xi1 is 1 for Republicans and 0 otherwise, the variab1e Xi2 is 1 for Democrats and
0 otherwise. As before, we don’t need an Xi3 for Independent/Other, since it would be redundant.
So now consider the implications of more model. If person i is Republican then E[Yi ] = β0 + β1 . On
the other hand, If person i is Democrat then E[Yi ] = β0 + β2 . Finally, If $i$ is Independent/Other
E[Yi ] = β0 .
So, we can interpret our coefficients as follows. β1 compares the mean for Republicans to that of
Independents/Others. β2 compares the mean for Democrats to that of Independents/Others. β1 − β2
compares the mean for Republicans to that of Democrats. Notice the coefficients are all comparisons
to the category that we left out, Independents/Others. If one category is an obvious reference
category, chose that one to leave our. In R, if our variable is a factor variable, it will create the
dummy variables for us and pick one of the levels to be the reference level. Let’s go through an
example to see.
Insect Sprays
Let’s consider a model with factors. Consider the InsectSprays dataset in R. The data models
the number of dead insects from different pesticides. Since it’s not clear from the documentation,
let’s assume (probably accurately) that these were annoying bad insects, like fleas, mosquitoes or
cockroaches, and not good ones like butterflies or ladybugs. After getting over that mental hurdle,
let’s plot the data.
Multivariable examples and tricks 65
Here’s the plot. There’s probably better ways to model this data, but let’s use a linear model just to
illustrate factor variables.
First, let’s set Spray A as the reference (the default, since it has the lowest alphanumeric factor level).
Therefore, 0.8333 is the estimated mean comparing Spray B to Spray A (as B - A), -12.4167 compares
Spray C to Spray A (as C - A) and so on. The inferencial statistics: standard errors, t value and P-value
all correspond to those comparisons. The intercept, 14.5, is the mean for Spray A. So, its inferential
statistics are testing whether or not the mean for Spray A is zero. As is often the case, this test isn’t
terribly informative and often yields extremely small statistics (since we know the spray kills some
bugs). The estimated mean for Spray B is its effect plus the intercept (14.5 + 0.8333); the estimated
mean for Spray C is 14.5 - 12.4167 (its effect plus the intercept) and so on for the rest of the factor
levels.
Let’s hard code the factor levels so we can directly see what’s going on. Remember, we simply leave
out the dummy variable for the reference level.
> summary(lm(count ~
I(1 * (spray == 'B')) + I(1 * (spray == 'C')) +
I(1 * (spray == 'D')) + I(1 * (spray == 'E')) +
I(1 * (spray == 'F'))
, data = InsectSprays))$coef
Estimate Std. Error t value Pr(>|t|)
(Intercept) 14.5000 1.132 12.8074 1.471e-19
I(1 * (spray == "B")) 0.8333 1.601 0.5205 6.045e-01
I(1 * (spray == "C")) -12.4167 1.601 -7.7550 7.267e-11
I(1 * (spray == "D")) -9.5833 1.601 -5.9854 9.817e-08
I(1 * (spray == "E")) -11.0000 1.601 -6.8702 2.754e-09
I(1 * (spray == "F")) 2.1667 1.601 1.3532 1.806e-01
Of course, it’s identical. You might further ask yourself, what would happen if I included a dummy
variable for Spray A? Would the world implode? No, it just realizes that one of the dummy variables
is redundant and drops it.
> summary(lm(count ~
I(1 * (spray == 'B')) + I(1 * (spray == 'C')) +
I(1 * (spray == 'D')) + I(1 * (spray == 'E')) +
I(1 * (spray == 'F')) + I(1 * (spray == 'A')), data = InsectSprays))$coef
However, if we drop the intercept, then the Spray A term is no longer redundant. The each coefficient
is the mean for that Spray.
Multivariable examples and tricks 67
So, for example, 14.5 is the mean for Spray A (as we already knew), 15.33 is the mean for Spray B (14.5
+ 0.8333 from our previous model formulation), 2.083 is the mean for Spray C (14.5 - 12.4167 from
our previous model formluation) and so on. This is a nice trick if you want your model formulated
in the terms of the group means, rather than the group comparisons relative to the reference group.
Also, if there’s no other covariates, the estimated coefficients for this mode are exactly the empirical
means of the groups. We can use dplyr to check this really easily and grab the mean for each group.
> library(dplyr)
> summarise(group_by(InsectSprays, spray), mn = mean(count))
Source: local data frame [6 x 2]
spray mn
1 A 14.500
2 B 15.333
3 C 2.083
4 D 4.917
5 E 3.500
6 F 16.667
Often your lowest alphanumeric level isn’t the level that you’re most interested in as a reference
group. There’s an easy fix for that with factor variables; use the relevel function. Here we give a
simple example. We created a variable spray2 that has Spray C as the reference level.
Multivariable examples and tricks 68
Now the intercept is the mean for Spray C and all of the coefficients are interpreted with respect to
Spray C. So, 12.417 is the comparison between Spray A and Spray C (as A - C) and so on.
• If we treat a variable as a factor, R includes an intercept and omits the alphabetically first level
of the factor.
– The intercept is the estimated mean for the reference level.
– The intercept t-test tests for whether or not the mean for the reference level is 0.
– All other t-tests are for comparisons of the other levels versus the reference level.
– Other group means are obtained the intercept plus their coefficient.
• If we omit an intercept, then it includes terms for all levels of the factor.
– Group means are now the coefficients.
– Tests are tests of whether the groups are different than zero.
• If we want comparisons between two levels, neither of which is the reference level, we could
refit the model with one of them as the reference level.
Let’s create a binary variable out of the variable Catholic to illustrate dummy variables in
multivariable models. However, it should be noted that this isn’t patently absurd, since the variable
is highly bimodal anyway. Let’s just split at majority Catholic or not:
Since we’re interested in Agriculture as a variable and Fertility as an outcome, let’s plot those two
color coded by the binary Catholic variable:
⁸³https://youtu.be/Xjjbv42KCaM?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
⁸⁴https://youtu.be/HB4owlrqvDE?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Multivariable examples and tricks 70
Yi = β0 + Xi1 β1 + Xi2 β2 + ϵi
where Yi is Fertility, Xi1 is ‘Agriculture and Xi2 is CatholicBin. Let’s first fit the model with
Xi2 removed.
This model just assumes one line through the data (linear regression). Now let’s add our second
variable. Notice that the model is
Yi = β0 + Xi1 β1 + ϵi
Yi = (β0 + β2 ) + Xi1 β1 + ϵi
when Xi2 = 1. Thus, the coefficient in front of the binary variable is the change in the intercept
between non-Catholic and Catholic majority provinces. In other words, this model fits parallel lines
for the two levels of the factor variable. If the factor variable had 4 levels, it would fit 4 parallel lines,
where the coefficients for the factors are the change in the intercepts to the reference level.
## Parallel lines
summary(lm(Fertility ~ Agriculture + factor(CatholicBin), data = swiss))$coef
Thus, 7.8843 is the estimated change in the intercept in the expected relationship between Agriculture
and Fertility going from a non-Catholic majority province to a Catholic majority.
Often, however, we want both a different intercept and slope. This is easily obtained with an
interaction term
Yi = β0 + Xi1 β1 + ϵi .
Thus, the coefficient in front of the main effect Xi2 , labeled β2 in our model, is the change in the
intercept, while the coefficient in front of interaction term Xi2 Xi1 , labeled β3 in our model, is the
change in the slope. Let’s try it:
Multivariable examples and tricks 72
Thus, 2.8577 is the estimated change in the intercept of the linear relationship between Agriculure
and Fertility going from non-Catholic majority to Catholic majority to Catholic majority provinces.
The interaction term 0.9891 is the estimate change in the slope. The estimated intercept in non-
Catholic provinces is 62.04993 while the estimated intercept in Catholic provinces is 62.04993 +
2.85770. The estimated slope in non-Catholic majority provinces is 0.09612 while it is 0.09612 +
0.08914 for Catholic majority provinces. If the factor has more than two levels, all of the main effects
are change in the intercepts from the reference level while all of the interaction terms are changes
in slope (again compared to the reference level).
Homework exercise, plot both lines on the data to see the fit!
Exercises
1. Do exercise 1 of the previous chapter if you have not already. Load the dataset Seatbelts as
part of the datasets package via data(Seatbelts). Use as.data.frame to convert the object
to a dataframe. Fit a linear model of driver deaths with kms and PetrolPrice as predictors.
Interpret your results.
2. Repeat question 1 for the outcome being the log of the count of driver deaths. Interpret your
coefficients. Watch a video solution.⁸⁵
3. Refer to question 1. Add the dummy variable law and interpret the results. Repeat this question
with a factor variable that you create called lawFactor that takes the levels No and Yes. Change
the reference level from No to Yes. Watch a video solution.⁸⁶
4. Discretize the PetrolPrice variable into four factor levels. Fit the linear model with this factor
to see how R treats multiple level factor variables. Watch a video solution.⁸⁷
5. Perform the plot requested at the end of the last chapter.
⁸⁵https://www.youtube.com/watch?v=GfIjC4rM08A&index=40&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁸⁶https://www.youtube.com/watch?v=ikKQv98i-EQ&index=41&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
⁸⁷https://www.youtube.com/watch?v=4FB8O-Vt1I0&index=42&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
Adjustment
Watch this video before beginning.⁸⁸
Adjustment, is the idea of putting regressors into a linear model to investigate the role of a third
variable on the relationship between another two. Since it is often the case that a third variable can
distort, or confound if you will, the relationship between two others.
As an example, consider looking at lung cancer rates and breath mint usage. For the sake of
completeness, imagine if you were looking at forced expiratory volume (a measure of lung function)
and breath mint usage. If you found a statistically significant regression relationship, it wouldn’t be
wise to rush off to the newspapers with the headline “Breath mint usage causes shortness of breath!”,
for a variety of reasons. First off, even if the association is sound, you don’t know that it’s causal. But,
more importantly in this case, the likely culprit is smoking habits. Smoking rates are likely related
to both breath mint usage rates and lung function. How would you defend your finding against the
accusation that it’s just variability in smoking habits?
If your finding held up among non-smokers and smokers analyzed separately, then you might have
something. In other words, people wouldn’t even begin to believe this finding unless it held up while
holding smoking status constant. That is the idea of adding a regression variable into a model as
adjustment. The coefficient of interest is interpreted as the effect of the predictor on the response,
holding the adjustment variable constant.
In this chapter, we’ll use simulation to investigate how adding a regressor into a model addresses
the idea of adjustment.
Experiment 1
Let’s first generate some data. Consider the model
Yi = β0 + β1 X + τ T + ϵi
We’re interested in the relationship between our binary treatment, T , and Y . However, we’re
concerned that the relationship may depend on the continuous variable, X.
Let’s simulate some data.
⁸⁸https://youtu.be/SFPM9IuP2m8
Adjustment 74
n <- 100; t <- rep(c(0, 1), c(n/2, n/2)); x <- c(runif(n/2), runif(n/2));
beta0 <- 0; beta1 <- 2; tau <- 1; sigma <- .2
y <- beta0 + x * beta1 + t * tau + rnorm(n, sd = sigma)
Let’s plot the data. Below I give the code for the first plot, the rest of the code for plots throughout
this chapter is omitted. (However, you can see the course git repository for the rest of the code.)
Simulation 1
Experiment 1.
Looking at this plot notices that the X variable is unrelated to treatment/group status (color). In
addition, the X variable is clearly linearly related to Y, but the intercept of this relationship depends
on group status. The treatment variable is also related to Y; especially look at the horizontal lines
which connect the group means onto the Y axis. The third line is the what you would get if you just
fit X and ignored group. Furthermore, notice that the relationship between group status and Y is
constant depending on X. In other words, both the apparent relationship and our estimated model
have parallel lines. (Remember, our model, by not including an interaction term, did not allow for
estimated non parallel lines.)
Finally, notice that the estimated relationship between the group variable and the outcome doesn’t
change much, regardless of whether X is accounted for or not. You can see this by comparing the
distance between the horizontal lines and the distance between the intercepts of the fitted lines.
The horizontal lines are the group averages (disregarding X). That the relationship doesn’t change
much is ultimately a statement about balance. The nuisance variable (X) is well balanced between
levels of the group variable. So, whether you account for X or not, you get about the same answer.
Moreover, we have lots of data at every level of X to make a direct comparison of the group on Y.
One way to try to achieve such balance with high probability is to randomize the group variable.
This is especially useful, of course, when one doesn’t get to observe the nuisance covariate. Though
be careful that as the number of unobserved covariates
Now let’s consider less ideal settings.
Adjustment 76
Experiment 2
Experiment 2.
In this experiment, the X variable is highly related to group status. That is, if you know the X variable,
you could very easily predict which group they belonged to. If we disregard X, there’s an apparent
strong relationship between the group variable and Y. However, if we account for X, there’s basically
none. In this case, the apparent effect of group on Y is entirely explained by X. Our regression model
would likely have a strong significant effect if group was included by itself and this effect would
vanish if X was included.
Further notice, there’s no data to directly compare the groups at any particular value of X. (There’s
no vertical overlap between the blue and red points.) Thus the adjusted effect is entirely based on
the model, specifically the assumption of linearity. Try to drawing curves on this plot assuming
non-linear relationships outside of their cloud of points for the blue and red groups. You quickly
will conclude that many relationship are possible that would differ from this model’s conclusions.
Worse still, you have no data to check the assumptions. Of course, R will churn forward without
any complaints fitting this model and reporting no significant difference between the groups.
It’s worth noting at this point, that our experiments just show how the data can arrive at different
effects when X is included or not. In a real application, t may be the case that X should be included
and maybe that it shouldn’t be.
Adjustment 77
For example, consider an example that I was working on a few years ago. Imagine if group was
whether or not the subject was taking blood pressure medication and X was systolic blood pressure
(ostensibly, the two variable giving the same information). It may not make sense to adjust for blood
pressure when looking at blood pressure medication on the outcome.
On the other hand consider another setting I ran into. A colleague was studying chemical brain
measurements of patients a severe mental disorder versus controls post mortem. However, the time
the time since death was highly related to the time the brain was stored since death, perhaps due
to the differential patient sources of the two groups. The time since death was strongly related to
the outcome we were studying. In this case, it is very hard to study the groups as they were so
contaminated by this nuisance covariate.
Thus we arrive at the conclusion that whether or not to include a covariate is a complex process
relying on both the statistics and a careful investigation into the subject matter being studied.
Experiment 3
Experiment 3.
In this experiment, we simulated data where the marginal (ignoring X) and conditional (using X)
associations differ. First note that if X is ignored, one would estimate a higher marginal mean for
Y of the red group over the blue group. However, if we look at the intercept in the fitted model,
Adjustment 78
the blue group has a higher intercept. In other words, if you were to fit this linear model as lm(Y
∼ Group) you would get one answer and lm(Y ∼ Group + X) would give you the exact opposite
answer, and in both cases the group effect would be highly statistically significant!
Also in this settings, there isn’t a lot of overlap between the groups for any given X. That means there
isn’t a lot of direct evidence to compare the groups without relying heavily on the model. In other
words, group status is related to X quite strongly (though not as strongly as in the previous example).
The adjusted relationship suggest that the blue group is larger than the red group. However, the
reversal of the effect comes as bigger X means more likely red and bigger X means higher Y.
Let’s concoct an example around a way this data could have occurred. Suppose that you’re
comparing two ad campaigns (labeled blue and red). Y is the sales from the ad (suppose you can
measure this) and X is time of day that the ad is shown. Ads shown later on in the day do better than
ads shown earlier. However, the blue ad campaign tended to get run in the morning while the red
one tended to get run in the evening. So, ignoring time of day leads to the erroneous conclusion that
the the red ad did better. Again randomization of the ads to time slots would likely have eliminated
this problem.
Experiment 4
Experiment 4
Adjustment 79
Now that you’ve gotten the hang of it. You can see how marginal and conditional associations
can differ. Experiment 4 is a case where the marginal association is minimal yet the conditional
association is large. In this case, by adding X to the model, the group effect became more statistically
significant.
Experiment 5
Adjustment 5.
Let’s look at a weird one. In this case, the best fitting model has both a group main effect and
interaction with X. The main point here is that there is no meaningful group effect, the effect of
group depends on what level of X you’re at. At a small value of X, the red group is here and at a
large value of X, the blue group is higher; at intermediate values, they’re the same. Thus, it makes
no sense to talk about a group effect in this example; group and X are intrinsically linked in their
impact on Y.
As an example, imagine if Y is health outcome, X is time and group is two medications. One makes
you much better right away then much worse as time goes on and the other doesn’t do much at the
start but steadily improves symptoms over time. Of course, most examples seen in practice aren’t
that extreme. Still even with a slight departure in constant slopes, the meaning of a main group
effect goes away.
Adjustment 80
Exercises
1. Load the dataset Seatbelts as part of the datasets package via data(Seatbelts). Use
as.data.frame to convert the object to a dataframe. Fit a linear model of driver deaths with
kms and PetrolPrice as predictors. Interpret your results.
2. Compare the kms coefficient with and without the inclusion of the PetrolPrice variable in
the model. Watch a video solution.⁸⁹
3. Compare the PetrolPrice coefficient with and without the inclusion fo the kms variable in
the model.
⁸⁹https://www.youtube.com/watch?v=LTTsm8FfgeI&index=43&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0
Residuals, variation, diagnostics
[Watch this video before beginning)[http://youtu.be/VohfwSJuG4k]
Residuals
Recall from Chapter 6 that the vertical distances between the observed data points and the fitted
regression line are called residuals. We can generalize this idea to the vertical distances between the
observed data and the fitted surface in multivariable settings.
∑
To be specific, recall our linear models, which was specified as Yi = pk=1 Xik βj + ϵi . Throughout
iid
this lecture, we’ll also assume that ϵi ∼ N (0, σ 2 ), even though this assumption isn’t necessary for
the definition of the residuals.
We define the residuals as:
∑
p
ei = Yi − Ŷi = Yi − Xik β̂j .
k=1
This definition is identical (Yi − Ŷi ) to our definition in the linear regression case. The residuals are
the vertical distances between the observed data points and the fitted regression surface. Just like in
linear regression, our
∑n
estimate of residual variation is basically the average of the squared residuals.
2
i=1 ei
Specifically, σ̂ = n−p . Just like the before, we divide by n − p rather than n so that the estimate
2
is unbiased, E[σ̂ 2 ] = σ 2 .
Obtaining and plotting residuals in R is particularly easy. The function resid will return the residuals
of a model fit with lm. Some useful plots, including a residual plot, can be performed with the plot
function on the output of a lm fit. Consider the swiss dataset from previous chapters.
Consider the upper left hand plot of the residuals (ei ) versus the fitted values (Ŷi ). Often, a horiztonal
reference line at 0 is drawn since (whenever an intercept is included) the residuals must sum to 0
and so will lie above and below the zero. Just like in our previous residual plots, one is look for any
systematic patters or large outlying observations.
Note that this is one of many residual plots that one may be interested in performing. For example,
one might want to look at plots of residuals by individual predictors or, as is done by plot, versus
leverage (defined later in this chapter).
Plot of simulated data with four different kinds of highlighted orange points.
The lower left hand point is not an outlier having neither leverage nor influence on our fitted model.
The upper left hand point is an outlier in the Y direction, but not in the X. It will have little impact
on our fitted model, since there’s lots of X points nearby to counteract its effect. This point is said to
have low leverage and influence. The upper right hand point is outside of the range of X values and Y
values, but conforms nicely to the regression relationship. This point has It will also have little effect
on the fitted model. It has high leverage, but chooses not to extert it, and thus has low influence.
The lower left hand point is outside of the range of X values, but not the Y values. However, it does
not conform to the relationship of the remainder of points at all. This outlier has high leverage and
influence.
From this discussion you can maybe guess at the formal definition of two important terms: leverage
and influence. Leverage discusses how outside of the norm a points X values are from the cloud of
other X values. A point with high leverage has the opportunity to dramatically impact the regression
model. Whether or not it does so depends on how closely it conforms to the fit.
The other concept, influence, is a measure of how much impact a point has on the regression fit.
The most direct way to measure influence is fit the model with the point included and excluded.
Residuals, variation, diagnostics 84
Both of these endeavor to create T-like (as in Student’s T distribution) statistics so that one can
threshold residuals using T cutoffs. This is why these sorts of residuals are called studentized. The
rstudent residuals are exactly T distributed while the rstandard is not. The rstandard residuals are
sometimes called internally standardized while the rstudent are called externally. The distinction
between the residuals is mostly for establishing probability based cutoffs. Instead, we recommend
looking at the residuals as a collective and using the cutoffs loosely. Under this way of thinking,
the distinctions over which of these two kinds of standardization are used is more academic than
practical.
A common use for residuals is to diagnose normality of the errors. This is often done by plotting the
residual quantiles versus normal quantiles. This is called a residual QQ plot. Your residuals should
fall roughly on a line if plotted in a normal QQ plot. There is of course noise and a perfect fit would
not be expected even if the model held.
Leverage is largely measured by one quantity, so called hat diagonals, which can be obtained in
R by the function hatvalues. The hat values are necessarily between 0 and 1 with larger values
indicating greater (potential for) leverage.
After leverage, there are quite a few ways to probe for **influence. These are:
• dffits - change in the predicted response when the $iˆ{th}$ point is deleted in fitting the
model.
• dfbetas - change in individual coefficients when the $iˆ{th}$ point is deleted in fitting the
model.
• cooks.distance - overall change in the coefficients when the $iˆ{th}$ point is deleted.
⁹⁰http://youtu.be/b6iqeHs_iro
Residuals, variation, diagnostics 85
In other words, the dffits check for influence in the fitted values, dfbetas check for influence in the
coefficients individually and cooks.distance checks for influence in the coefficients as a collective.
Finally, there’s a residual measure that’s also an influence measure. Particularly, consider resid(fit)
/ (1 - hatvalues(fit)) where fit is the linear model fit. This is the so-called PRESS residuals.
These are the residual error from leave one out cross validation. That is, the difference in the response
and the predicted response at data point i, where it was not included in the model fitting.
Simulation examples
Case 1
In what follows, we’re going to try several simulation settings and see the values of some on the
residuals, influence measures and leverage. In our first case, we simulate 100 points. The 101st point,
c(10, 10), has created a strong regression relationship where there shouldn’t be one. Note we
prepend this point at the beginning of the Y and X vectors.
First, let’s look at the dfbetas. Note the dfbetas are 101 by 2 dimensional, since there’s a dfbeta
for both the intercept and the slope. Let’s just output the first 10 for the slope.
Residuals, variation, diagnostics 87
Clearly the first point has a much, much larger dfbeta for the slope than the other points. That is,
the slope changes dramatically from when we include this point to not including it. Try it out with
Cook’s distance and the dffits. Let’s look at leverage.
round(hatvalues(fit)[1 : 10], 3)
1 2 3 4 5 6 7 8 9 10
0.445 0.010 0.011 0.011 0.030 0.017 0.012 0.033 0.021 0.010
Again, this point has a much higher leverage value than that of the other points. By having a large
leverage value and dfbeta, we’re seeing that this point has a high potential for influence, and decided
to exert it.
Case 2
Consider a second case where the point lies on a natural line defined by the data, but is well outside
of the cloud of X values. Since the code is so similar, I don’t show it. But, as always, it can be found
in the github repo for the courses.
Residuals, variation, diagnostics 88
Now let’s consider the dfbetas and the leverage for the first 10 observations.
As we would expect, the dfbeta value for the first point is well with the range of the other points.
The leverage is much larger than the others. In this case, the point has high leverage, but choses not
to exert it as influence.
Play around with more simulation examples to get a feeling for what these measures do. This will
help more than anything in understanding their value.
We end with a really fun example from Stefanski in TAS 2007 volume 61⁹². This paper illustrates
how a residual plot can unveil hidden treasures that would be nearly impossible to detect with other
kinds of plots. He has several examples on his website and we go through one. First, let’s read in the
data and do a scatterplot matrix.
It looks like a big mess of nothing. We can fit a model and get that all of the variables are highly
significant
⁹²http://amstat.tandfonline.com/doi/abs/10.1198/000313007X190079
Residuals, variation, diagnostics 90
There appears to be a pattern. The moral of the story here is that residual plots can really hone in
on systematic patters in the data that are completely non-apparent from other plots.
Residuals, variation, diagnostics 91
Plot of the influence, leverage and residuals from the swiss dataset
Exercises
1. Load the dataset Seatbelts as part of the datasets package via data(Seatbelts). Use
as.data.frame to convert the object to a dataframe. Fit a linear model of driver deaths with
kms, PetrolPrice and law as predictors.
2. Refer to question 1. Directly estimate the residual variation via the function resid. Compare
with R’s residual variance estimate. Watch a video solution.⁹³
3. Refer to question 1. Perform an analysis of diagnostic measures including, dffits, dfbetas,
influence and hat diagonals. Watch a video solution.⁹⁴
⁹³https://www.youtube.com/watch?v=T8nPIeH1rwU&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=44
⁹⁴https://www.youtube.com/watch?v=XEqlmqFTVOI&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=45
Multiple variables and model
selection
Watch this video before beginning.⁹⁵
This chapter represents a challenging question: “How do we chose what to variables to include in a
regression model?”. Sadly, no single easy answer exists and the most reasonable answer would be
“It depends.”. These concepts bleed into ideas of machine learning, which is largely focused on high
dimensional variable selection and weighting. In this chapter we cover some of the basics and, most
importantly, the consequences of over- and under-fitting a model.
Multivariable regression
In our Coursera Data Science Specialization, we have an entire class on prediction and machine
learning. So, in this class, our focus will be on modeling. That is, our primary concern is winding up
with an interpretable model, with interpretable coefficients. This is a very different process than if
we only care about prediction or machine learning. Prediction has a different set of criteria, needs
for interpretability and standards for generalizability. In modeling, our interest lies in parsimonious,
interpretable representations of the data that enhance our understanding of the phenomena under
study.
Like nearly all aspects of statistics, good modeling decisions are context dependent. Consider a good
model for prediction, versus one for studying mechanisms, versus one for trying to establish causal
effects. There are, however, some principles to help you guide your way.
Parsimony is a core concept in model selection. The idea of parsimony is to keep your models as
simple as possible (but no simpler). This builds on the idea of Occam’s razor⁹⁶, in that all else being
equal simpler explanations are better than complex ones. Simpler models are easier to interpret and
are less finicky. Complex models often have issues with fitting and, especially, overfitting. (To see a
counterargument, consider Andrew Gelman’s blog.⁹⁷.)
Another principle that I find useful for looking at statistical models is to consider them as lenses
through which to look at your data. (I attribute this quote to great statistician Scott Zeger.) Under
this philosophy, what’s the right model - whatever one connects the data to a true, parsimonious
statement about what you’re studying. Unwin and authors have formalized these ideas more into
something they call exploratory model analysis⁹⁸ I like this, as it turns our focus away from trying
⁹⁵https://youtu.be/zfhNo8uNBho?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
⁹⁶https://en.wikipedia.org/wiki/Occam’s_razor
⁹⁷http://andrewgelman.com/2004/12/10/against_parsimo/
⁹⁸http://www.sciencedirect.com/science/article/pii/S016794730200292X
Multiple variables and model selection 93
to get a single, best, true model and instead focuses on. This is useful, since there are uncountable
ways that a model can be wrong. In this lecture, we’ll focus on variable inclusion and exclusion.
General rules
Here we state a couple of general rules regarding model selection for our known knowns.
⁹⁹https://en.wikipedia.org/wiki/There_are_known_knowns
Multiple variables and model selection 94
• Omitting variables results in bias in the coefficients of interest - unless the regressors are
uncorrelated with the omitted ones.
I want to reiterate this point: if the omitted variable is uncorrelated with the included variables, its
omission has no impact on estimation. It might explain some residual variation, thus it could have
an impact on inference. As previously mentioned, this lack of impact of uncorrelated variables is
why we randomize treatments; randomization attempts to disassociate our treatment indicator with
variables that we don’t have to put in the model. Formal theories of inference can be designed around
the use of randomization. However, in a practical sense, if there’s too many unobserved confounding
variables, even randomization won’t help you, since with high probability one will stay correlated
with the treatment.
In most cases we won’t have randomization. So, to avoid bias, why don’t we throw everything into
the regression model? The following rule prevents us from doing that:
• Including variables that we shouldn’t have increases standard errors of the regression
variables.
Actually, including any new variables increases the actual (not estimated) standard errors of other
regressors. So we don’t want to idly throw variables into the model. In addition the model must tend
toward perfect fit as the number of non-redundant regressors approaches the sample size. Our R2
increases monotonically as more regressors are included, even unrelated white noise.
n <- 100
plot(c(1, n), 0 : 1, type = "n", frame = FALSE, xlab = "p", ylab = "R^2")
y <- rnorm(n); x <- NULL; r <- NULL
for (i in 1 : n){
x <- cbind(x, rnorm(n))
r <- c(r, summary(lm(y ~ x))$r.squared)
}
lines(1 : n, r, lwd = 3)
abline(h = 1)
Multiple variables and model selection 95
Notice that the R2 goes up, monotonically, as the number of regressors is increased. This reminds us
of a couple of things. First, irrelevant variables explain residual variation by chance. And, when eval-
uating fit, we have to take into account the number of regressors included. The adjusted R2 is better
for these purposes than R2 since it accounts for the number of variables included in the model. In R,
you can get the adjusted R2 very easily with by grabbing summary(fitted_model)$adj.r.squared
instead of summary(fitted_model)$r.squared.
¹⁰⁰https://youtu.be/sP5JJlOCNNo?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Multiple variables and model selection 96
x1 x1 x1
0.02839 0.02872 0.02884
Notice that the standard error for the x1 coefficient goes up as more regressors are included (left to
right in our vector output). It’s important to note that these are the actual standard errors (obtained
by repeatedly simulating the data). These aren’t obtainable in a single dataset since we only get one
realization. The estimated standard errors, the ones we have access to in a data analysis, may not
go up as you include more regressors.
Now let’s see if we can make the variance inflation worse. In this case, I’ve made x2 and x3 correlated
with x1.
Notice that the variance inflation goes up quite a bit more. This is an issue with including variables
that are highly correlated with the ones that we are interested in. In the first simulation, the
regressors were simulated independently, and the variance inflation wasn’t bad. In the second, they
were correlated and it was much worse.
• We don’t know σ, the residual variance, so we can’t know the actual variance inflation
amount.
• However, σ drops out of the ratio of the standard errors. Thus, if one sequentially adds
variables, one can check the variance (or sd) inflation for including each one.
• When the other regressors are actually orthogonal (correlation 0) to the regressor of interest,
then there is no variance inflation.
• The variance inflation factor (VIF) is the increase in the variance for the ith regressor compared
to the ideal setting where it is orthogonal to the other regressors.
– The square root of the VIF is the increase in the sd instead of variance.
• Remember, variance inflation is only part of the picture. We want to include certain variables,
even if they dramatically inflate our variance.
Let’s revisit our previous simulation to show how one can estimate the relative increase in variance.
Let’s simulate a single dataset, and I’ll show how to get the relative increase in variance for including
x2 and x3. All you need to do is take the ratio of the variances for that coefficient. If you don’t exactly
understand the code, don’t worry. The idea is that we can obtain these from an observed data set.
Now let’s check it by referring to our previous simulation and see what the relative variance for x1
is when including the x2 and x2 plus x3 models.
Notice that it’s the same (about). In other words, from a single observed dataset we can perfectly
estimate the relative variance inflation caused by adding a regressor.
> data(swiss);
> fit1 <- lm(Fertility ~ Agriculture, data = swiss)
> a <- summary(fit1)$cov.unscaled[2,2]
>fit2 <- update(fit, Fertility ~ Agriculture + Examination)
> fit3 <- update(fit, Fertility ~ Agriculture + Examination + Education)
> c(summary(fit2)$cov.unscaled[2,2],
summary(fit3)$cov.unscaled[2,2]) / a
[1] 1.892 2.089
Thus inclusion of Examination increases the variance of the Agriculture effect by 89.2% while further
adding Examination and Education causes a 108.9% increase. Again, the observed standard errors
won’t follow these percentages. These are the increases if we actually knew σ 2 .
Let’s look at the variance inflation factors. These measure how much variance inflation the variable
causes relative to the setting where it was orthogonal to the other regressors. This is nice because
it has a well contained interpretation within a single model fit. Also, one doesn’t have to do all of
the model refitting we did above to explore variance inflation. So, in general, the VIFs are the most
convenient entity to work with.
> library(car)
> fit <- lm(Fertility ~ . , data = swiss)
> vif(fit)
Agriculture Examination Education Catholic Infant.Morta\
lity
2.284 3.675 2.775 1.937 1\
.108
> sqrt(vif(fit)) #If you prefer sd inflation
Agriculture Examination Education Catholic Infant.Morta\
lity
1.511 1.917 1.666 1.392 1\
.052
correctly or overfit the model, including all necessary covariates and possibly some unnecessary
ones, the variance estimate is unbiased. However, the variance of the variance is larger if we include
unnecessary variables.
These make sense. If we’ve omitted important variables, we’re attributing residual variation that is
really systematic variation explainable by those omitted covariates. Therefore, we would expect a
variance estimate that is systematically off (biased). We would also expect absence of bias when we
throw the kitchen sink at the model and include everything (necessary and unnecessary). However,
then our variance estimate is unstable (the variance of the variance estimate is larger).
Notice how the three models I’m interested in are nested. That is, Model 3 contains all of the Model
2 variables which contains all of the Model 1 variables. The P-values are for a test of whether all
of the new variables are all zero or not (i.e. whether or not they’re necessary). So this model would
conclude that all of the added Model 3 terms are necessary over Model 2 and all of the Model 2 terms
are necessary over Model 1. So, unless there were some other compelling reasons, we’d pick Model
3. Again, you don’t want to blindly follow a model selection procedure, but when the models are
naturally nested, this is a reasonable approach.
Exercises
1. Load the dataset Seatbelts as part of the datasets package via data(Seatbelts). Use
as.data.frame to convert the object to a dataframe. Fit a linear model of driver deaths with
kms, PetrolPrice and law as predictors.
2. Perform a model selection exercise to arrive at a final model. Watch a video solution.¹⁰²
¹⁰²https://www.youtube.com/watch?v=ffu80TAq2zY&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=46
Generalized Linear Models
Watch this video before beginning.¹⁰³
Generalized linear models (GLMs) were a great advance in statistical modeling. The original
manuscript with the GLM framework was from Nelder and Wedderburn in 1972¹⁰⁴. in the Journal
of the Royal Statistical Society. The McCullagh and Nelder book¹⁰⁵ is the famous standard treatise
on the subject.
Recall linear models. Linear models are the most useful applied statistical technique. However, they
are not without their limitations. Additive response models don’t make much sense if the response
is discrete, or strictly positive. Additive error models often don’t make sense, for example, if the
outcome has to be positive. Transformations, such as taking a cube root of a count outcome, are
often hard to interpret.
In addition, there’s value in modeling the data on the scale that it was collected. Particularly
interpretable transformations, natural logarithms in specific, aren’t applicable for negative or zero
values.
The generalized linear model is family of models that includes linear models. By extending the
family, it handles many of the issues with linear models, but at the expense of some complexity and
loss of some of the mathematical tidiness. A GLM involves three components
The three most famous cases of GLMs are: linear models, binomial and binary regression and Poisson
regression. We’ll go through the GLM model specification and likelihood for all three. For linear
models, we’ve developed them throughout the book. The next two chapters will be devoted to
binomial and Poisson regression. We’ll only focus on the most popular and useful link functions.
The link function as g so that g(µ) = η. For linear models g(µ) = µ so that µi = ηi This yields the
same likelihood model as our additive error Gaussian linear model
∑
p
Yi = Xik βk + ϵi
k=1
iid
where ϵi ∼ N (0, σ 2 ). So, we’ve specified our model as a GLM above and with a more traditional
linear model specification below. Let’s try an example where the GLM is more necessary.
In this case, g is the (natural) log odds, referred to as the logit. Note then we can invert the logit
function as:
exp(ηi ) 1
µi = and 1 − µi =
1 + exp(ηi ) 1 + exp(ηi )
Some people like to call this the expit function. The logit is useful as it converts probabilities which
lie in [0,1] into the whole real line, a more natural space for the linear part of the model to live.
Notice further, we’re not transforming the outcome (Y). Instead, we’ll modeling our Y as if it were
a collection of coin flips and applying the transformation to the probability of a head.
To get the estimates we maximize the likelihood. We can write out the likelihood as:
( )
∏
n ∑
n ∏
n
µyi i (1 − µi )
1−yi
= exp yi ηi (1 + ηi )−1
i=1 i=1 i=1
µi = eηi
∑
n
(Yi − µi )
0= Wi
i=1
V ar(Yi )
The variance differs by the model. The Wi are derivative terms that we won’t deal with.
In the latter two cases, it is often relevant to have a more flexible variance model, even if it doesn’t
correspond to an actual likelihood. We might make the following changes:
∑n
(Yi − µi ) ∑n
(Yi − µi )
0= Wi and 0 = Wi
i=1
ϕµi (1 − µ i ) i=1
ϕµi
These are called ‘quasi-likelihood’ normal equations. R offers these as an option in the glm function
as the quasipoisson and quasibinomial options. These offer more flexible variance options than
straight Poisson and binomial models.
Generalized Linear Models 104
• The normal equations have to be solved iteratively. Resulting in β̂k and, if included, ϕ̂.
∑
• Predicted linear predictor responses can be obtained as η̂ = pk=1 Xk β̂k
• Predicted mean responses as µ̂ = g −1 (η̂)
• Coefficients are interpreted as
or the change in the link function of the expected response per unit change in Xk holding other
regressors constant.
Exercises
1. True or false, generalized linear models transform the observed outcome. (Discuss.) Watch a
video solution.¹⁰⁶
2. True or false, the interpretation of the coefficients in a GLM are on the scale of the link
function. (Discuss.) Watch a video solution.¹⁰⁷
3. True or false, the generalized linear model assumes an exponential family for the outcome.
(Discuss.) Watch a video solution.¹⁰⁸
4. True or false, GLM estimates are obtained by maximizing the likelihood. (Discuss.) Watch a
video solution.¹⁰⁹
5. True or false, some GLM distributions impose restrictions on the relationship between the
mean and the variance. (Discuss.) Watch a video solution.¹¹⁰
¹⁰⁶https://www.youtube.com/watch?v=gsfMdAmHxgA&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=47
¹⁰⁷https://www.youtube.com/watch?v=ewAUYoJYG_0&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=48
¹⁰⁸https://www.youtube.com/watch?v=CkZ9wOm0Uvs&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=49
¹⁰⁹https://www.youtube.com/watch?v=LckCGsK8oqY&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=50
¹¹⁰https://www.youtube.com/watch?v=oRUJv6ur_cY&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=51
Binary GLMs
Watch this video before beginning.¹¹¹
Binary GLMs come from trying to model outcomes that can take only two values. Some examples
include: survival or not at the end of a study, winning versus losing of a team and success versus
failure of a treatment or product. Often these outcomes are called Bernoulli outcomes, from the
Bernoulli distribution named after the famous probabilist and mathematician.
If we happen to have several exchangeable binary outcomes for the same level of covariate values,
then that is binomial data and we can aggregate the 0’s and 1’s into the count of 1’s. As an example,
imagine if we sprayed insect pests with 4 different pesticides and counted whether they died or not.
Then for each spray, we could summarize the data with the count of dead and total number that
were sprayed and treat the data as binomial rather than Bernoulli.
> download.file("https://dl.dropboxusercontent.com/u/7710864/data/ravensData.rda"
, destfile="./data/ravensData.rda",method="curl")
> load("./data/ravensData.rda")
> head(ravensData)
ravenWinNum ravenWin ravenScore opponentScore
1 1 W 24 9
2 1 W 38 35
3 1 W 28 13
4 1 W 34 31
5 1 W 44 13
6 0 L 23 24
¹¹¹https://youtu.be/CteWtkdXQ-Y?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
¹¹²Baltimore is the home of Johns Hopkins University where your author works. I got this data set
Binary GLMs 106
Yi = β0 + β1 Xi + ei
Where, Yi is a binary indicator of whether or not the Ravens won game i(1 for a win, 0 for a loss).
Xi is the number of points that they scored for that game. and ϵi is the residual error term.
Under this model then β0 is the expected value of Yi given a 0 point game. For a 0/1 variable, the
expected value is the probability, so the intercept is the probability that the Ravens win with 0 points
scored. Then β1 is the increase in probability of a win for each addiational point.
At this point in the book, I hope that fitting and interpreting this model would be second nature.
There’s numerous problems with this model. First, if the Ravens score more than 63 points in a game,
we estimate a 0.0159 * 63, which is greater than 1, increase in the probability of them winning. This is
an impossibility, since a probability can’t be greater than 1. 63 is an unusual, but not impossible, score
in American football, but the principle applies broadly: modeling binary data with linear models
results in models that fail the basic assumption of the data.
Perhaps less galling, but still an annoying aspect of the model, is that if the error is assumed to be
Gaussian, then our model allows Yi to be anything from minus infinity to plus infinity, when we
know our data can be only be 0 or 1. If we assume that our errors are discrete to force this, we assume
a very strange distribution on the errors.
There also aren’t any transformations to make things better. Any one to one transformation of our
outcome is still just going to have two values, thus the same set of problems.
The key insight was to transform the probability of a 1 (win in our example) rather than the data
itself. Which transformation is most useful? It turns out that it involves the log of the odds, called
the logit.
Odds
You’ve heard of odds before, most likely from discussions of gambling. First note, odds are a fraction
greater than 0 but unbounded. The odds are not a percentage or proportion. So, when someone
says “The odds are fifty percent”, they are mistaking probability and odds. They likely mean “The
probability is fifty percent.”, or equivalently “The odds are one.”, or “The odds are one to one”, or
Binary GLMs 107
“The odds are fifty [divided by] fifty.” The latter three odds statements are all the same since: 1, 1 /
1 and 50 / 50 are all the same number.
If p is a probability, the odds are defined as o = p/(1 − p). Note that we can go backwards as
p = o/(1 + o). Thus, if someone says the odds are 1 to 1, they’re saying that the odds are 1 and thus
p = 1/(1 + 1) = 0.5. Conversely, if someone says that the probability that something occurs is 50%,
then they mean that p = 0.5 so that the odds are o = p/(1 − p) = 0.5/(1 − 0.5) =.
The odds are famously derived using a standard fair game setting. Imagine that you are playing a
game where you flip a coin with success probability p with the following rules:
What should we set X and Y for the game to be fair? Fair means the expected earnings for either
player is 0. That is:
E[earnings] = Xp − Y (1 − p) = 0
p
This implies X
Y
= 1−p = o. Consider setting X = 1, then Y = o. Thus, the odds can be interpreted
as “How much should you be willing to pay for a p probability of winning a dollar?” If p > 0.5 you
have to pay more if you lose than you get if you win. If p < 0.5 you have to pay less if you lose
than you get if you win.
So, imagine that I go to a horse race and the odds that a horse loses are 50 to 1. They usually specify
in terms of losing at horse tracks, so this would be said to be 50 to 1 “against” where the against is
implied and not stated on the boards. The odds of the horse winning are then 1/50. Thus, for a fair
bet if I were to bet on the horse winning, they should pay me 50 dollars if he wins and should pay
1 dollar if he loses. (Or any agreed upon multiple, such as 100 dollars if he wins and 2 dollars if he
loses.) The implied probability that the horse loses is 50/(1 + 50).
It’s an interesting side note that the house sets the odds (hence the implied probability) only by
the bets coming in. They take a small fee for every bet win or lose (the rake). So, by setting the
odds dynamically as the bets roll in, they can guarantee that they make money (risk free) via the
rake. Thus the phrase “the house always wins” applies literally. Even more interesting is that by
the wisdom of the crowd, the final probabilities tend to match the percentage of times that event
happens. That is, house declared 50 to 1 horses tend to win about 1 out of 51 times and lose 50 out
of 51 times, even though that 50 to 1 was set by a random collection of mostly uninformed bettors.
This is why even your sports junkie friend with seemingly endless up to date sports knowledge
can’t make a killing betting on sports; the crowd is just too smart as a group even though most of
the individuals know much less.
Finally, and then I’ll get back on track, many of the machine learning algorithms work on this
principle of the wisdom of crowds: many small dumb models can make really good models. This is
often called ensemble learning, where a lot of independent weak classifiers are combined to make
Binary GLMs 108
a strong one. Random forests and boosting come to mind as examples. In the Coursera Practical
Machine Learning class, we cover ensemble learning algorithms.
Getting back to the issues at hand, recall that probabilities are between 0 and 1. Odds are between
0 and infinity. So, it makes sense to model the log of the odds (the logit), since it goes from minus
infinity to plus infinity. The log of the odds is called the logit:
g = logit(p) = log(p/1 − p)
We can go backwards from the logit to the probability with the so-called expit (inverse logit):
pi = P(Yi = 1 | Xi = xi , β0 , β1 )
be the probability of a win for number of points xi . Then the odds that they win is pi /(1 − pi ) and
the log odds is log pi /(1 − pi ) = logit(pi ).
Logistic regression puts the model on the log of the odds (logit) scale. In other words,
logit(pi ) = β0 + β1 xi
exp β0 + β1 xi
P (Yi = 1 | Xi = xi , β0 , β1 ) = pi =
1 + exp(β0 + β1 xi )
logit{P (Yi = 1 | Xi = xi )} = β0 + β1 xi
log{O(Yi = 1 | Xi = xi )} = β0 + β1 xi
{ }
O(Yi = 1 | Xi = xi + 1)
log{O(Yi = 1 | Xi = xi +1)}−log{O(Yi = 1 | Xi = xi )} = log = β1
O(Yi = 1 | Xi = xi )
So that β1 is the log of the relative increase in the odds of the Ravens winning for a one point increase
in score. The ratio of two odds is called, not surprisingly, the odds ratio. So β1 is the log odds ratio
of the Ravens winning associated with a one point increase in score.
We can get rid of the log by exponentiating and then get that exp(β1 ) is the odds ratio associated
with a one point increase in score. It’s a nifty fact that you can often perform this exponentiation
in your head, since for numbers close to zero, exponentiation is about 1 + that number. So, if you
have a logistic regression slope coefficient of 0.01, you know that e to that coefficient is about 1.01.
So you know that the coefficient estimates a 1% increase in the odds of a success for every 1 unit
increase in the regressor.
¹¹³https://youtu.be/-g3wtUAW1rU?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Binary GLMs 110
Try making the slope negative and see what happens. (It flips the curve from increasing to
decreasing.) Now let’s hold β1 fixed and vary β0 .
Binary GLMs 111
Notice that varying the intercept shifts the curve back and forth. Let’s superimpose some data with
the fitted curve.
Binary GLMs 112
Image of simulated binary data, fitted model (red) and lowess smooth (blue).
The plot above shows the simulated binary data (black points), the fitted logistic curve (red) and a
lowess smoother through the data (blue). The lowess smoother shows a non-parametric estimate of
the probability of a success at each x value. Think of it as a moving proportion. Logistic regression
gets to move around the intercept and slope of the logistic curve to fit the data well. Here the fit says
that the probability of a 1 for low values of x is very small, the probability of a 1 for high values of
x is high and it is intermediate at the points in the middle.
Binary GLMs 113
Deviance Residuals:
Min 1Q Median 3Q Max
-1.758 -1.100 0.530 0.806 1.495
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) -1.6800 1.5541 -1.08 0.28
ravensData$ravenScore 0.1066 0.0667 1.60 0.11
¹¹⁴https://youtu.be/lZCCj-IxYOA?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Binary GLMs 114
In this case, the data only covers some of the logistic curve, so that the full “S” of the curve isn’t
visible. To interpret our coefficients, let’s exponentiate them.
> exp(logRegRavens$coeff)
(Intercept) ravensData$ravenScore
0.1864 1.1125
> exp(confint(logRegRavens))
2.5 % 97.5 %
(Intercept) 0.005675 3.106
ravensData$ravenScore 0.996230 1.303
The first line of code shows that the exponentiated slope coefficient is 1.11. Thus, we estimate a 11%
increase in the odds of winning per 1 point increase in score. However, the data are variable and
the confident interval goes from 0.99 to 1.303. Since this interval contains 1 (or contains 0 on the log
scale), it’s not statistically significant. (It’s pretty close, though.)
If we had included another variable in our model, say home versus away game indicator, then our
slope is interpreted holding the value of the covariate held fixed. Just like in multivariable regression.
We can also compare nested models using ANOVA and, by and large, our general model discussion
carries over to this setting as well.
Binary GLMs 115
Exercises
1. Load the dataset Seatbelts as part of the datasets package via data(Seatbelts). Use
as.data.frame to convert the object to a dataframe. Create a new outcome variable for
whether or not greater than 119 drivers were killed that month. Fit a logistic regression GLM
with this variable as the outcome and kms, PetrolPrice and law as predictors. Interpret your
parameters. Watch a video solution.¹¹⁵
2. Fit a binomial model with DriversKilled as the outcome and drivers as the total count with
kms , PetrolPrice and law as predictors, interpret your results. Watch a video solution.¹¹⁶
3. Refer to Question 1. Use the anova function to compare models with just law, law and
PetrolPrice and all three predictors. Watch a video solution.¹¹⁷
¹¹⁵https://www.youtube.com/watch?v=CXWZqzKdkp4&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=52
¹¹⁶https://www.youtube.com/watch?v=M2KLD_ZFgdo&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=53
¹¹⁷https://www.youtube.com/watch?v=npHpBLqkhLg&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=54
Count data
Watch this video before beginning.¹¹⁸
Acknowledgement to Jeff Leek for much of the code and organization of this chapter.
Many data take the form of unbounded count data. For example, consider the number of calls to a
call center or the number of flu cases in an area or the number of hits to a web site.
In some of these cases the counts are clearly bounded. However, modeling the counts as unbounded
is often done when the upper limit is not known or very large relative to the number of events.
If the upper bound is known, the techniques we’re discussing can be used to model the proportion
or rate. The starting point for most count analysis is the the Poisson distribution.
Poisson distribution
The Poisson distribution is the goto distribution for modeling counts and rates. We’ll define a rate
as a count per unit of time. For example your heart rate is often expressed in beats per minute. So,
we might look at web hits per day, or disease cases per exposure time (incidence rates). Also, though
not exactly a rate, we can treat proportions as if rates when n is large and the success probability is
small.
We would write that a random variable is Poisson, X ∼ Poisson(tλ), if its density function is:
(tλ)x e−tλ
P (X = x) =
x!
where x = 0, 1, . . .. The mean of the Poisson is E[X] = tλ, thus E[X/t] = λ. The variance of
the Poisson is V ar(X) = tλ. The Poisson tends to a normal as tλ gets large and approximates a
binomial with large n and small p where we would think of tλ as np.
Here are some plots of the Poisson density to illustrate how it closely approximates a normal.
¹¹⁸https://youtu.be/YtotMuVmOUM?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Count data 117
Poisson distribution
Let’s analyze some data using the Poisson distribution. Consider the daily counts to Jeff Leek’s web
site: http://biostat.jhsph.edu/∼jleek/¹¹⁹
We’re interested in the number of hits per day. Since the unit of time is always one day, set t = 1
and then the Poisson mean is interpreted as web hits per day. If we set t = 24 then our Poisson rate
would be interpreted as web hits per hour.
Let’s load the data: {lang=r, line-numbers=off} ∼∼∼ > download.file(“https://dl.dropboxusercontent.com/u/7710864
> load(“./data/gaData.rda”) > gaData$julian = julian(gaData$date) > head(gaData) date visits sim-
plystats julian 1 2011-01-01 0 0 14975 2 2011-01-02 0 0 14976 3 2011-01-03 0 0 14977 4 2011-01-04 0 0
14978 5 2011-01-05 0 0 14979 6 2011-01-06 0 0 14980
plot(gaData$julian,gaData$visits,pch=19,col=”darkgrey”,xlab=”Julian”,ylab=”Visits”) ∼∼∼
¹¹⁹http://biostat.jhsph.edu/~jleek/
Count data 118
Linear regression
We could try to fit the data with linear regression. This is an often reasonable thing to do. Specifically,
we would start with the model
Yi = β0 + beta1 xi + ϵi
where Yi is the number of web hits on day i and xi is the day (expressed as a Julian date, the number
of days since January 1st, 1970).
This model isn’t anywhere near as objectionable as when applied in the binary case. Two sticking
points remain. First, the response is a count and thus is non-negative, while our model doesn’t
acknowledge that. Secondly, the errors are typically assumed Gaussian, which is not an accurate
approximation for small counts. As the counts get larger, straight application of linear or multivari-
able regression models becomes more compelling.
Count data 119
1 > plot(gaData$julian,gaData$visits,pch=19,col="darkgrey",xlab="Julian",ylab="Vis\
2 its")
3 > lm1 = lm(gaData$visits ~ gaData$julian)
4 > abline(lm1,col="red",lwd=3)
The non-negativity could be handled by a (natural) log transformation of the outcome. The log has
a special interpretation with respect to regression, so we cover it here. First, there is the issue of zero
counts (which can’t be logged). Often a +1 is added to all data before taking the log, a reasonable
solution but one that harms the nice interpretation properties of the log. Secondly, a square root or
cube root transformation is often applied (which works just fine on zeros). While correcting nicely
for skewness, this approach the issue of losing the nice interpretation of logs. Thus for the time being,
let’s assume no zero counts in the discussion.
Consider now the model:
log(Yi ) = β0 + β1 xi + ϵi
The quantity eE[log(Y )] geometric mean of Y . When you take the natural log of outcomes and fit a
regression model, your exponentiated coefficients estimate things about geometric means. Thus our
eβ0 is the geometric mean hits on day 0 while eβ1 is the relative increase or decrease in hits going
from one day to the next.
Let’s try this briefly with Jeff’s data.
Count data 120
Thus our model estimates a 0.2% increase in geometric mean daily web hits each day. What’s
nice about the geometric mean is it’s a multiplicative quantity. In this case it make sense to think
multiplicatively, as we would very naturally think in the terms of percent increases or decreases in
the daily rate of web traffic.
Poisson regression
Watch this video before beginning.¹²⁰
Poisson regression is similar to logging the outcome. However, instead we log the model mean
exactly as in the binary chapter where we logged the modeled odds. This takes care of the problem
of zero counts elegantly.
Consider a model where we assume that Yi ∼ Poisson(µi ). and
log(E[Yi | Xi = xi ]) = log(µi ) = β0 + β1 xi
Note that we’re not logging the outcome, we’re logging the assumed mean in the model.
We interpret our coefficients as follows. eβ0 is the expected mean of the outcome when xi = 0. Using
the relationship:
E[Yi | Xi = xi + 1]
= eβ1
E[Yi | Xi = xi ]
we interpret {$$}eˆ{\beta_1}{$$} as the expected relative increase in the outcome for a unit change in
the regressor. If there’s more than one regressor in the model, then the coefficients are interpreted
in the terms of the other regressors being held fixed.
Let’s try it in R for Jeff’s data:
> plot(gaData$julian,gaData$visits,pch=19,col="darkgrey",xlab="Julian",ylab="Vis\
its")
> glm1 = glm(gaData$visits ~ gaData$julian,family="poisson")
> abline(lm1,col="red",lwd=3); lines(gaData$julian,glm1$fitted,col="blue",lwd=3)
¹²⁰https://youtu.be/hg51LjG1xIc?list=PLpl-gQkQivXjqHAJd2t-J_One_fYE55tC
Count data 121
Mean-variance relationship
The Poisson model suggest a specific relationship between the mean and the variance. Specifically,
if Yi ∼ Poisson(µi ), then E[Yi ] = Var(Yi ). We can often check whether or not this relationship
apparently holds. For example, we can plot the fitted values (estimates E[Yi ]) by generalized version
of residuals for Poisson models. Bins of the
> plot(glm1$fitted,glm1$residuals,pch=19,col="grey",ylab="Residuals",xlab="Fitte\
d")
Count data 122
There are several methods for dealing with data that, while being counts, do not follow the mean
variance relationship assumed by the Poisson model. Perhaps the easiest is to assume a so-called
quasi-Poisson model. This is from the idea of quasi-likelihood. Here, the model is extended to
have the variance be a constant (non-fixed) multiple of the mean. A very related approach are
so-called negative binomial models. These models typically assume a more general mean/variance
relationship.
Other approaches directly model the mean/variance relationship or rely on asymptotics to be robust
to the assumption. We omit a full discussion of general of methods for addressing complex mean
variance relationships and simply show a quasi-Poisson fit for the data of this chapter.
2.5 % 97.5 %
julian 0.2192443 0.2399335
In this case the distinction between the intervals is minimal. Again, we reiterate that this only
pursues one direction of model departure.
Rates
We fit rates or proportions in Poisson models by including the temporal or sample size component
as a (natural) log offset in the model specification. Recall that Yi was the number of web hits. Let
Wi be the number of hits directed to the site from the Simply Statistics BLOG site.
Consider the model where
Wi ∼ Poisson(µi )
so that
log(µi ) = β0 + β1 xi + log(Yi )
This is a model for the proportion in the sense that µi is the expected count and our model is:
log(µi /Yi ) = β0 + β1 xi
In this case we were interested in a proportion. If our interest was in rates, counts over a time period,
such as incident rate (cases per time at risk), the time variable would be included as the offset.
Exercises
1. Load the dataset Seatbelts as part of the datasets package via data(Seatbelts). Use
as.data.frame to convert the object to a dataframe. Fit a Poisson regression GLM with
UKDriversKilled as the outcome and kms, PetrolPrice and law as predictors. Interpret your
results. Watch a video solution.¹²¹
2. Refer to question 1. Fit a linear model with the log of drivers killed as the outcome. Interpret
your results. Watch a video solution.¹²²
3. Refer to question 1. Fit your Poisson log-linear model with drivers as a log offset (to consider
the proportion of drivers killed of those killed or seriously injured.) Watch a video solution.¹²³
4. Refer to Question 1. Use the anova function to compare models with just law, law and
PetrolPrice and all three predictors. Watch a video solution.¹²⁴
¹²¹https://www.youtube.com/watch?v=TXO-SHOV_j4&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=55
¹²²https://www.youtube.com/watch?v=7RyaIhmpM48&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=56
¹²³https://www.youtube.com/watch?v=HylRM_XrUe0&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=57
¹²⁴https://www.youtube.com/watch?v=ewfjP1i8gPs&list=PLpl-gQkQivXji7JK1OP1qS7zalwUBPrX0&index=58
Bonus material
Watch this video before beginning.¹²⁵.
This chapter is a bit of an mishmash of interesting things that one can accomplish with linear models.
∑
d
Yi = β0 + β1 Xi + (xi − ξk )+ γk + ϵi
k=1
where (a)+ = a if a > 0 and 0 otherwise and ξ1 ≤ ... ≤ ξd are known knot points. Prove to yourself
that the mean function:
\beta_0 + \beta_1 X_i + \sum{k=1}ˆd (x_i - \xi_k)+ \gamma_k {/$$} is continuous at the knot points.
That is, we could draw this function without lifting up the pen.
Let’s try a simulated example. The function is a sine curve with noise. We have twenty knot points.
¹²⁵https://youtu.be/DRKg33tmoAE
Bonus material 126
The plot discovers the sine curve fairly well. However, it has abrupt break points. This is because our
fitted function is continuous at the knot points, but is not differentiable. We can get it to have one
continuous derivative at those points, by adding squared terms. Adding cubic terms would make it
twice continuously differentiable (so even a little smoother looking). Here’s our squared regression
spline model:
∑
d
Y i = β0 + β1 X i + β2 Xi2 + (xi − ξk )2+ γk + ϵi
k=1
Notes
The collection of regressors is called a basis. People have spent a lot of time thinking about bases
for this kind of problem. So, consider this treatment is just a teaser. Further note that a single knot
point term can fit hockey stick like processes, as long as you know exactly where the knot point is.
Bonus material 127
These bases can be used in GLMs as well. Thus, this gives us an easy method for fitting non-linear
functions in the linear predictor. An issue with these approaches in either linear or generarlized
linear models is the large number of parameters introduced. Most solutions require some method of
“regularization”. In this process the effective dimension is reduced by adding a term that penalizes
large coefficients.
¹²⁶https://en.wikipedia.org/wiki/Octave
¹²⁷http://www.phy.mtu.edu/~suits/notefreqs.html
Bonus material 128
It is interesting to note that what we’re accomplishing is highly related to the famous Discrete Fourier
Transform. This is an automatic what to fit all sine and cosine terms available to a set of data. And,
the Fast (Discrete) Fourier Transform (FFT) does it about as fast as possible (faster than fitting the
linear model). Here, I give some code to show taking the FFT and plotting the coefficients. Notice it
lodes on the three notes comprising the chords.
Thanks!
Thanks for your time and attention in reading this book. I hope that you’ve learned some of the
basics of linear models and have internalized that these are some incredibly powerful tools. As a
next direction, you might consider more coverage of generalized linear models, or looking at the
specific cases for correlated data. Thanks again!
Brian