Historical Context & Motivation
For centuries, scientists and mathematicians collecting data have faced the same nagging question: what do you do with measurements that don't seem to belong? A single strange data point can sometimes reveal an exciting new discovery, but it can also be the result of a simple mistake. The history of statistics is full of moments when researchers had to decide whether to trust an unusual observation or set it aside.
As early as the 1800s, astronomers struggled with this problem while mapping the positions of stars. One faulty telescope reading could throw off an entire star chart. Over time, mathematicians developed formal methods to identify and handle these unusual values — what we now call outliers and influential points. Understanding these concepts is essential whenever you build a model from data.
The core question these developments address is straightforward: when you fit a line (or curve) to data, which points have an outsized effect on the result, and what should you do about them? Answering this question carefully is what separates a trustworthy model from a misleading one.
Core Principles & Definitions
Before diving into calculations, you need a clear vocabulary. Three closely related but distinct ideas sit at the heart of this topic. While people sometimes use the words interchangeably, each one describes a different relationship between a data point and the model.
Outlier
High-Leverage Point
Influential Point
Residual
Visual Explanation
The scatter plot below shows a small dataset with a clear linear trend. Three special points are highlighted: one that is merely an outlier (large residual but near the center of x-values), one that has high leverage but follows the trend, and one that is both an outlier and a high-leverage point — making it influential.
Notice the dashed vertical lines on points A and C — these represent the residuals. Point A's residual is large, but because A sits near the center of the x-values, it doesn't have much pull on where the line pivots. Point C's residual is also large, and it sits at the far edge of the data. That combination makes C influential: it can rotate the line toward itself and change the slope, intercept, and correlation coefficient substantially.
Mathematical Framework
You already know that a least-squares regression line minimizes the sum of squared residuals. The key formulas below show exactly how each data point feeds into the slope and intercept — and why extreme values can hijack the result.
The practical test for influence is simple: fit the regression line with all points, then fit it again with the suspect point removed. If the slope, intercept, or r² change noticeably, the point is influential. In more advanced courses, this idea is formalized through Cook's distance, but for now the remove-and-compare approach is the standard method you'll use.
Classifying Unusual Points
The diagram below organizes every data point into one of four categories based on two questions: Is the x-value extreme (high leverage)? Is the residual large (outlier)? The most dangerous combination — extreme x and large residual — is the influential point.
Keep in mind that a high-leverage point that falls on the existing trend actually strengthens the model — it increases r² and makes the slope estimate more precise. Leverage is not automatically bad. It only becomes a problem when paired with a large residual, because then the point is tugging the line away from the overall pattern.
Worked Example
Suppose you are studying the relationship between hours of study (x) and exam score (y) for ten students. After plotting the data, you notice one student studied 12 hours — much more than anyone else — and scored 58, which is well below the predicted score for that many hours. Let's investigate whether this point is influential.
| Student | Hours (x) | Score (y) |
|---|---|---|
| 1 | 1 | 52 |
| 2 | 2 | 58 |
| 3 | 3 | 62 |
| 4 | 3 | 67 |
| 5 | 4 | 70 |
| 6 | 4 | 73 |
| 7 | 5 | 75 |
| 8 | 5 | 78 |
| 9 | 6 | 82 |
| 10 | 12 | 58 |
How Outliers & Influential Points Affect a Model
Not every unusual point is equally dangerous. The table below compares how different types of unusual points affect the three most important summary measures of a linear model: the slope, the intercept, and the coefficient of determination (r²).
| Type of Point | Effect on Slope (b₁) | Effect on r² | Should You Worry? |
|---|---|---|---|
| Outlier (central x) | Minimal change in slope because leverage is low. | May decrease r² because it adds unexplained variation. | Moderate — investigate the data value, but the model is fairly stable. |
| High-leverage point (on trend) | Slope stays roughly the same; may stabilize the estimate. | Often increases r² — extends the range of x, reinforcing the pattern. | Low — this point actually helps the model, but verify the data. |
| Influential point (high leverage + outlier) | Can drastically change the slope — may flatten, steepen, or even reverse the line. | Can either inflate or deflate r² unpredictably. | High — always investigate. Report results with and without the point. |
Connection to Advanced Theory
In this course, you identify influential points by the remove-and-compare method. In more advanced statistics courses — including AP Statistics and college-level regression analysis — formal numerical diagnostics are used to automate and quantify this process.
| Concept in This Course | Advanced Version |
|---|---|
| Visually checking if x is far from x̄ | Leverage statistic (hᵢ) — a number between 0 and 1 measuring exactly how far xᵢ is from the data center. |
| Checking if the residual is large | Standardized / Studentized residuals — residuals divided by their estimated standard error, so |e*| > 2 flags an outlier. |
| Removing a point and re-fitting | Cook's distance (Dᵢ) — combines leverage and residual size into a single measure of influence. Dᵢ > 0.5 is often flagged. |
| Describing effect on slope / r² | DFFITS and DFBETAS — measure how much the fitted value or individual coefficient changes when a point is deleted. |
You don't need to memorize these advanced formulas now, but it's useful to know they exist. The intuition you're building — that extreme x-values combined with large residuals spell trouble — is exactly the same intuition that underlies every one of these formal tools. Mastering the visual and remove-and-compare approach now will make the transition to these numerical diagnostics straightforward later.
Practice Problems
Lesson Summary
An outlier is a data point with a large residual — its observed y-value is far from the value predicted by the regression line. A high-leverage point has an x-value far from the mean of x, giving it the potential to swing the line. When a point is both an outlier and a high-leverage point, it becomes an influential point — removing it causes a noticeable change in the slope, intercept, or r² of the regression model.
To identify these points, compare the regression equation with all data included to the equation after removing the suspect point. If the model changes substantially, the point is influential. Always investigate why a point is unusual — it might be a data error, a measurement from a different population, or a genuine extreme value — before deciding whether to include it in your analysis. Reporting results both with and without the influential point is the most responsible practice.