Adding a feature raised . Does that mean the model improved?
easyAnswer
- is the fraction of variance explained; it never decreases when you add a feature, even a useless one.
- Adjusted penalizes for the number of features and can decrease when you add a feature that doesn't help.
- Use adjusted for model comparison across different feature counts; use to describe fit at a fixed feature set.
- Both can be misleading for non-linear models; prefer AIC/BIC or CV.
Check yourself — multiple choice
- penalizes complexity; adjusted does not
- Adjusted penalizes for the number of predictors; use it to compare models of different sizes
- Both are guaranteed to be positive
- Adjusted is always higher than
Adjusted penalizes added features so you can compare models fairly.
#linear-regression#metrics-regression
Practise Supervised Learning
215 interview questions in this topic.
Related questions
- Can R^2 be negative? What does that mean?
- When is quantile regression more useful than mean (OLS) regression?
- Why does OLS have a closed-form solution but logistic regression doesn't?
- What are the classical assumptions of linear regression?
- How do you interpret a coefficient in a multiple linear regression?
- What is VIF and when do you worry about multicollinearity?