Residuals from regression model

Forecasting Product Demand in R

Aric LaBarr, Ph.D.

Senior Data Scientist, Elder Research

Linear Regression

Forecasting Product Demand in R

Regression Residuals

  • Ways to reduce residuals further:
    1. Add more important variables to the model
    2. Use time series if your residuals are related over time
Forecasting Product Demand in R

Examine Residuals

M_hi_full_res <- residuals(model_M_hi_full)

M_hi_full_res <- xts(M_hi_full_res, order.by = dates_train)
hist(M_hi_full_res) plot(M_hi_full_res)
Forecasting Product Demand in R

Residual Plots

Forecasting Product Demand in R

Let's practice!

Forecasting Product Demand in R

Preparing Video For Download...