Question

How do you measure the accuracy of a linear regression model?

Updated on August 15, 2025 | By Learnzy Admin | πŸ‘οΈ Views: 136 students

Solution
βœ” Verified

For linear regression, accuracy is usually measured by how close the predicted values are to the actual values, using error metrics (since it predicts continuous values).

Here are the most common ones:

  1. R-squared (RΒ²) :- It is a number between 0 and 1 that tells you how well your regression model explains the variation in the target variable.
    1. RΒ² = 1 β†’ Perfect fit (model explains 100% of the variation)
    2. RΒ² = 0 β†’ Model explains nothing (predictions are no better than the mean)
  2. Mean Absolute Error (MAE)
  3. Mean Squared Error (MSE)
  4. Root Mean Squared Error (RMSE)
Was this solution helpful? 44
Click here to download practice questions on Linear Regression

More Questions on Linear Regression

Question 1

What is Multiple Linear Regression (MLR)


View solution
Question 2

Simple Linear Regression β€” Predicting Salary from Experience


View solution
Question 3

What is the difference between simple and multiple linear regression?


View solution
Question 4

What is Linear Regression?


View solution