Chapter 7: Linear Regression Models Flashcards

1
Q

Linear Regression Equation

A

ŷ = a + bx
ŷ = predicted y-value
a = y-intercept
b = slope

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Extrapolation

A

Predictions made outside of the interval of current data’s x-values (often not reliable)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Residual

A

The difference between the actual response value and the model’s predicted response value (y-ŷ)
Positive = underestimation
Negative = overestimation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Residual Plot

A

Visualizes and accentuates the residuals, allowing us to assess our model’s fit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Good Fit Vs. Bad Fit For Residual Plots

A

Good: Apparent randomness, centered at 0, no clear patterns
Bad: Curved pattern

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Line Of Best Fit

A

The line that minimizes the sum of the squares of the residuals
(Contains mean)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Coefficient Of Determination (r^2)

A

The percentage of variation in the response variable that is explained by the explanatory variable in the model
“____% of the variation in response variable can be explained by the linear relationship with explanatory variable.”
(0<=r^2<=1)
Closer to 0 = Weaker
Closer to 1 = Stronger

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Reading Computer Regression Tables (LSRL)

A

Column 2, Row 2 = y-intercept = a
Column 2, Row 3 = slope = b
Column 1, Row 3 = x variable
Row 4, Value 1 = SD of residuals
Row 4, Value 2 = r^2 in % form

How well did you know this?
1
Not at all
2
3
4
5
Perfectly