Chapter 7: Linear Regression

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

Linear Model

A straight-line equation used to predict a response variable (y) based on an explanatory variable (x). It summarizes the general trend in a scatterplot.

2
New cards

Residual

The difference between an observed value and its predicted value.

Formula: Residual = Actual y – Predicted y

Residuals show how far off the model’s prediction is.

3
New cards

Least Squares Line

The line of best fit minimizes the sum of squared residuals. It gives the most accurate linear model for the data.

4
New cards

Correlation Coefficient (r)

Measures the strength and direction of the linear relationship.

  • r = 1 or -1 means perfect linear relationship

  • r = 0 means no linear relationship

  • Closer to ±1 = stronger linear relationship

5
New cards

Regression to the Mean:

Predictions tend to be less extreme than the observed x-values. Predicted values are pulled closer to the mean.

6
New cards

Regression Line Equation

ŷ = b₀ + b₁x

Where:

  • ŷ is the predicted y value

  • b₁ is the slope (change in y per unit x)

  • b₀ is the y-intercept (predicted y when x = 0)

7
New cards

Slope Interpretation

Describes the predicted change in y for each 1-unit increase in x.

8
New cards

Intercept Interpretation

Predicted value of y when x = 0. Sometimes it may not make sense in context.

9
New cards

Standard Error (s)

Measures the typical size of a residual. It tells how much the data points typically deviate from the regression line.

10
New cards

R-squared (R²)

Tells how well the regression model explains the variability in the response variable.

  • R² = 0%: Model explains none of the variation

  • R² = 100%: Model explains all the variation

  • R² = (correlation)²

11
New cards

Conditions for Linear Regression

  1. Quantitative Variables Condition: Both x and y must be quantitative.

  2. Straight Enough Condition: The scatterplot should look roughly linear.

  3. Outlier Condition: Outliers can distort the model. They must be checked.

  4. Does the Plot Thicken? Condition: Residuals should have constant spread (equal variance).

12
New cards

Residual Plot

A graph of residuals vs. predicted values. Should look random (no pattern) if the model is appropriate.