Chapter 10: Linear Regression and Correlation
10.3 The Regression Equation
Learning Objectives
By the end of this section, the student should be able to:
- Create and interpret the line of best fit.
- Calculate and interpret the correlation coefficient.
- Calculate and interpret the coefficient of determination.
Data rarely fit a straight line exactly. Usually, you must be satisfied with rough predictions. Typically, you have a set of data whose scatter plot appears to “fit” a straight line. This is called a Line of Best Fit or Least-Squares Line.
Example
A random sample of 11 statistics students produced the following data, where x is the third exam score out of 80, and y is the final exam score out of 200. Can you predict the final exam score of a random student if you know the third exam score?
x (third exam score) | y (final exam score) |
---|---|
65 | 175 |
67 | 133 |
71 | 185 |
71 | 163 |
66 | 126 |
75 | 198 |
67 | 153 |
70 | 163 |
71 | 159 |
69 | 151 |
69 | 159 |
Try It
SCUBA divers have maximum dive times they cannot exceed when going to different depths. The data in [link] show different depths with the maximum dive times in minutes. Use your calculator to find the least squares regression line and predict the maximum dive time for 110 feet.
X (depth in feet) | Y (maximum dive time) |
---|---|
50 | 80 |
60 | 55 |
70 | 45 |
80 | 35 |
90 | 25 |
100 | 22 |
Solution
ŷ = 127.24 – 1.11x
At 110 feet, a diver could dive for only five minutes.
The third exam score, x, is the independent variable, and the final exam score, y, is the dependent variable. We will plot a regression line that best “fits” the data. If each of you were to fit a line “by eye,” you would draw different lines. We can use what is called a least-squares regression line to obtain the best fit line.
Consider the following diagram. Each point of data is of the form (x, y) and each point of the line of best fit using least-squares linear regression has the form (x, ŷ).
The ŷ is read “y hat” and is the estimated value of y. It is the value of y obtained using the regression line. It is not generally equal to y from data.
The term y0 – ŷ0 = ε0 is called the “error” or residual. It is not an error in the sense of a mistake. The absolute value of a residual measures the vertical distance between the actual value of y and the estimated value of y. In other words, it measures the vertical distance between the actual data point and the predicted point on the line.
If the observed data point lies above the line, the residual is positive, and the line underestimates the actual data value for y. If the observed data point lies below the line, the residual is negative, and the line overestimates that actual data value for y.
In the diagram in [link], y0 – ŷ0 = ε0 is the residual for the point shown. Here the point lies above the line and the residual is positive.
ε = the Greek letter epsilon
For each data point, you can calculate the residuals or errors, yi – ŷi = εi for i = 1, 2, 3, …, 11.
Each |ε| is a vertical distance.
For the example about the third exam scores and the final exam scores for the 11 statistics students, there are 11 data points. Therefore, there are 11 ε values. If you square each ε and add, you get
[latex]{\left({\epsilon }_{1}\right)}^{2}+{\left({\epsilon }_{2}\right)}^{2}+...+{\left({\epsilon }_{11}\right)}^{2}=\stackrel{11}{\underset{i\text{ }=\text{ }1}{\Sigma }}{\epsilon }^{2}[/latex]
This is called the Sum of Squared Errors (SSE).
Using calculus, you can determine the values of a and b that make the SSE a minimum. When you make the SSE a minimum, you have determined the points that are on the line of best fit. It turns out that
the line of best fit has the equation:
where [latex]a=\overline{y}-b\overline{x}[/latex] and [latex]b=\frac{\Sigma \left(x-\overline{x}\right)\left(y-\overline{y}\right)}{\Sigma {\left(x-\overline{x}\right)}^{2}}[/latex].
The sample means of the x values and the y values are [latex]\overline{x}[/latex] and [latex]\overline{y}[/latex], respectively. The best fit line always passes through the point [latex]\left(\overline{x},\overline{y}\right)[/latex].
The slope b can be written as [latex]b=r\left(\frac{{s}_{y}}{{s}_{x}}\right)[/latex] where sy = the standard deviation of the y values and sx = the standard deviation of the x values. r is the correlation coefficient, which is discussed in the next section.
Least Squares Criteria for Best Fit
The process of fitting the best-fit line is called linear regression. The idea behind finding the best-fit line is based on the assumption that the data are scattered about a straight line. The criteria for the best fit line is that the sum of the squared errors (SSE) is minimized, that is, made as small as possible. Any other line you might choose would have a higher SSE than the best fit line. This best fit line is called the least-squares regression line.
Note
Computer spreadsheets, statistical software, and many calculators can quickly calculate the best-fit line and create the graphs. The calculations tend to be tedious if done by hand. Instructions to use the TI-83, TI-83+, and TI-84+ calculators to find the best-fit line and create a scatterplot are shown at the end of this section.
THIRD EXAM vs FINAL EXAM EXAMPLE:
The graph of the line of best fit for the third-exam/final-exam example is as follows:
The least squares regression line (best-fit line) for the third-exam/final-exam example has the equation:
Reminder
Remember, it is always important to plot a scatter diagram first. If the scatter plot indicates that there is a linear relationship between the variables, then it is reasonable to use a best fit line to make predictions for y given x within the domain of x-values in the sample data, but not necessarily for x-values outside that domain. You could use the line to predict the final exam score for a student who earned a grade of 73 on the third exam. You should NOT use the line to predict the final exam score for a student who earned a grade of 50 on the third exam, because 50 is not within the domain of the x-values in the sample data, which are between 65 and 75.
Understanding Slope
The slope of the line, b, describes how changes in the variables are related. It is important to interpret the slope of the line in the context of the situation represented by the data. You should be able to write a sentence interpreting the slope in plain English.
INTERPRETATION OF THE SLOPE: The slope of the best-fit line tells us how the dependent variable (y) changes for every one unit increase in the independent (x) variable, on average.
THIRD EXAM vs FINAL EXAM EXAMPLE
Slope: The slope of the line is b = 4.83.
Interpretation: For a one-point increase in the score on the third exam, the final exam score increases by 4.83 points, on average.
Using the Linear Regression T Test: LinRegTTest
- In the STAT list editor, enter the X data in list L1 and the Y data in list L2, paired so that the corresponding (x,y) values are next to each other in the lists. (If a particular pair of values is repeated, enter it as many times as it appears in the data.)
- On the STAT TESTS menu, scroll down with the cursor to select the LinRegTTest. (Be careful to select LinRegTTest, as some calculators may also have a different item called LinRegTInt.)
- On the LinRegTTest input screen enter: Xlist: L1; Ylist: L2; Freq: 1
- On the next line, at the prompt β or ρ, highlight “≠ 0” and press ENTER
- Leave the line for “RegEq:” blank
- Highlight Calculate and press ENTER.
The output screen contains a lot of information. For now we will focus on a few items from the output, and will return later to the other items.
The second line says y = a + bx. Scroll down to find the values a = –173.513, and b = 4.8273; the equation of the best fit line is ŷ = –173.51 + 4.83x
The two items at the bottom are r2 = 0.43969 and r = 0.663. For now, just note where to find these values; we will discuss them in the next two sections.
Graphing the Scatterplot and Regression Line
- We are assuming your X data is already entered in list L1 and your Y data is in list L2.
- Press 2nd STATPLOT ENTER to use Plot 1.
- On the input screen for PLOT 1, highlight On, and press ENTER.
- For TYPE: highlight the very first icon which is the scatterplot and press ENTER.
- Indicate Xlist: L1 and Ylist: L2.
- For Mark: it does not matter which symbol you highlight.
- Press the ZOOM key and then the number 9 (for menu item “ZoomStat”); the calculator will fit the window to the data.
- To graph the best-fit line, press the “Y=” key and type the equation –173.5 + 4.83X into equation Y1. (The X key is immediately left of the STAT key). Press ZOOM 9 again to graph it.
- Optional: If you want to change the viewing window, press the WINDOW key. Enter your desired window using Xmin, Xmax, Ymin, Ymax.
Note
Another way to graph the line after you create a scatter plot is to use LinRegTTest.
The Correlation Coefficient r
Besides looking at the scatter plot and seeing that a line seems reasonable, how can you tell if the line is a good predictor? Use the correlation coefficient as another indicator (besides the scatterplot) of the strength of the relationship between x and y.
The correlation coefficient, r, developed by Karl Pearson in the early 1900s, is numerical and provides a measure of strength and direction of the linear association between the independent variable x and the dependent variable y.
The correlation coefficient is calculated as
where n = the number of data points.
If you suspect a linear relationship between x and y, then r can measure how strong the linear relationship is.
What the VALUE of r tells us:
What the SIGN of r tells us
Note
Strong correlation does not suggest that x causes y or y causes x. We say “correlation does not imply causation.”
The formula for r looks formidable. However, computer spreadsheets, statistical software, and many calculators can quickly calculate r. The correlation coefficient r is the bottom item in the output screens for the LinRegTTest on the TI-83, TI-83+, or TI-84+ calculator (see previous section for instructions).
The Coefficient of Determination
The variable r2 is called the coefficient of determination and is the square of the correlation coefficient but is usually stated as a percent rather than in decimal form. It has an interpretation in the context of the data:
- [latex]{r}^{2}[/latex], when expressed as a percent, represents the percent of variation in the dependent (predicted) variable y that can be explained by variation in the independent (explanatory) variable x using the regression (best-fit) line.
- 1 – [latex]{r}^{2}[/latex], when expressed as a percentage, represents the percent of variation in y that is NOT explained by variation in x using the regression line. This can be seen as the scattering of the observed data points about the regression line.
Consider the third exam/final exam example introduced in the previous section
a measure developed by Karl Pearson (early 1900s) that gives the strength of association between the independent variable and the dependent variable; the formula is:
[latex]r=\frac{n{\sum }^{\text{}}xy-\left({\sum }^{\text{}}x\right)\left({\sum }^{\text{}}y\right)}{\sqrt{\left[n{\sum }^{\text{}}{x}^{2}-{\left({\sum }^{\text{}}x\right)}^{2}\right]\left[n{\sum }^{\text{}}{y}^{2}-{\left({\sum }^{\text{}}y\right)}^{2}\right]}}[/latex]
where n is the number of data points. The coefficient cannot be more than 1 and less than –1. The closer the coefficient is to ±1, the stronger the evidence of a significant linear relationship between x and y.