Introduction:
You have completed your linear regression fitting and prediction. But you want to know how to represent the accuracy of the linear regression. We discuss different accuracy metrics of linear regression in this post.(1) adjusted R-square and mean-squared-error:
(2) coefficients and their significance:
So these are mainly two ways in which you can discuss the results of your linear regression. You can either talk about the overall performance of the linear regression or discuss the significance of the predictor variables one vs one. There are a few other techniques which can be a bit business-specific.
median correlation metrics:
Sometimes, you will be more concerned about maintaining the order of linear regression prediction with the original target variable. In such cases, you will have to consider the average correlation across multiple folds of data and then report that as median correlation.
bucket based rmse:
More than often in business, it is not only enough to have rmse good in overall, but you also have to check that whether your rmse holds for all the buckets of the target variable. i.e. let's say you are trying to estimate network traffic for some telecom company. Now, the value varies over time from quite low to quite high. Now, your overall estimation should have lesser rmse, as well as there should be lesser rmse for high values as well as low values. If someone doesn't properly take care of the regression model, then it may happen so that the model predicts quite inaccurate values for lower values but it is well enough for higher values. So bucket wise rmse is also important.
There can be many other use-cases for interpreting and checking the accuracy of multiple linear regression. But I have mentioned the theoretical and two of the common business-related cases I have come across. Please comment, share and subscribe to my blog to read more such content. Also to know more about linear regression, follow this linear regression blog written by me. Thanks for reading!
Comments
Post a Comment