Residuals from regression model

Previsione della domanda di prodotto in R

Aric LaBarr, Ph.D.

Senior Data Scientist, Elder Research

Linear Regression

Previsione della domanda di prodotto 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
Previsione della domanda di prodotto 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)
Previsione della domanda di prodotto in R

Residual Plots

Previsione della domanda di prodotto in R

Let's practice!

Previsione della domanda di prodotto in R

Preparing Video For Download...