What Really is R2-Score in Linear Regression?
One of the most important metrics for evaluating a continuous target regression model
There are so many different metrics that can be used for evaluating regression models. In this article, we discuss several metrics that can be used for continuous target variable regression models. Among the many, R2 Score remains the most popular metric.
Metrics for Continuous Target Regression
If you are performing regression for a continuous outcome (i.e.linear regression, K-neighbors regression or support vector regression), then you may use metrics such as MSE, MAE, ME or R2 Score to evaluate the performance of your model.
In the examples below, y represents the exact value, while y_hat represents the predicted value. We will assume our dataset has N observations.
- MSE (Mean Square Error): Uses Euclidean distance to calculate the error. MSE gives the magnitude of the error only.
- MAE (Mean Absolute Error): Uses Manhattan distance to calculate the error. MAE (like MSE) gives the magnitude of the error…