Regression

Using Residuals Percent in OLS Diagnostics

Many students (myself included) were taught to analyze the raw residuals when diagnosing regression models, but not in terms of percent. The benefit of the latter is that we can assess the relative magnitude of error from our regression model. To display the residuals as a percent (henceforth Residuals, %), let’s first load some necessary libraries. libs <- c('tidyverse', 'magrittr', 'ggthemes', 'gridExtra') # For each library, check if they are installed.