Regression MSE Flashcards

(37 cards)

1
Q

What is a predictor in regression?

A

An observed variable used as input to explain or predict the response variable.

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

What is the model (design) matrix?

A

A numeric matrix whose rows are observations and whose columns correspond to model parameters.

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

What do the rows of the model matrix represent?

A

Individual observations.

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

What do the columns of the model matrix represent?

A

Model parameters (one per column).

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

What equation defines fitted values using the model matrix?

A

ŷ = Xβ̂

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

What is Mean Squared Error (MSE)?

A

The average squared difference between observed values and fitted values.

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

What is the formula for prediction MSE?

A

MSE = (1/n) Σ (yᵢ − ŷᵢ)²

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

What is the regression MSE used to estimate error variance?

A

MSE = RSS / (n − p)

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

What does p represent in regression MSE?

A

The number of estimated parameters (columns of X).

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

What does regression MSE estimate?

A

The variance of the error term σ².

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

What are the units of MSE?

A

Squared units of the response variable.

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

What is RMSE?

A

The square root of MSE, returning error to original response units.

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

What is Mean Absolute Error (MAE)?

A

The average absolute difference between observed and fitted values.

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

What is the formula for MAE?

A

MAE = (1/n) Σ |yᵢ − ŷᵢ|

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

How does MAE differ from MSE?

A

MAE uses absolute errors; MSE squares errors and penalizes large errors more.

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

Is MAE more robust to outliers than MSE?

A

Yes, because it does not square large errors.

17
Q

What is R²?

A

The proportion of variability in the response explained by the model.

18
Q

What is the formula for R²?

A

R² = 1 − RSS / TSS

19
Q

What does TSS represent?

A

Total Sum of Squares, the total variability in y.

20
Q

What are the bounds of R²?

A

Typically between 0 and 1 for models with intercepts.

21
Q

Can R² decrease when adding predictors?

A

No, R² never decreases when predictors are added.

22
Q

Does a high R² guarantee a good model?

A

No, it does not guarantee good prediction or valid assumptions.

23
Q

What does MSE measure?

A

Average squared prediction error magnitude.

24
Q

What does MAE measure?

A

Average absolute prediction error magnitude.

25
What does R² measure?
Proportion of variance explained, not error size.
26
Which metric is scale-dependent: MSE, MAE, or R²?
MSE and MAE are scale-dependent; R² is unitless.
27
Which metric penalizes large errors most strongly?
MSE.
28
What is leverage in regression?
A measure of how extreme an observation’s predictor values are.
29
Where is leverage found mathematically?
On the diagonal of the hat matrix.
30
What is the hat matrix?
The matrix H = X(XᵀX)⁻¹Xᵀ that maps y to ŷ.
31
What does high leverage mean?
The observation lies far from the center of the predictor space.
32
Does high leverage imply a large residual?
No, leverage concerns X-values, not y-values.
33
How does leverage affect MSE?
High-leverage points can greatly increase MSE if they have large residuals.
34
Can a high-leverage point reduce MSE?
Yes, if it lies close to the fitted regression line.
35
What combination makes a point influential?
High leverage and a large residual.
36
How is leverage related to degrees of freedom?
The sum of leverage values equals the number of parameters p.
37
What happens to leverage when more predictors are added?
Average leverage increases because p increases.