resid u als from regression model
play

Resid u als from regression model FOR E C ASTIN G P R OD U C T D E - PowerPoint PPT Presentation

Resid u als from regression model FOR E C ASTIN G P R OD U C T D E MAN D IN R Aric LaBarr , Ph . D . Senior Data Scientist , Elder Research Linear Regression FORECASTING PRODUCT DEMAND IN R Regression Resid u als Wa y s to red u ce resid u


  1. Resid u als from regression model FOR E C ASTIN G P R OD U C T D E MAN D IN R Aric LaBarr , Ph . D . Senior Data Scientist , Elder Research

  2. Linear Regression FORECASTING PRODUCT DEMAND IN R

  3. Regression Resid u als Wa y s to red u ce resid u als f u rther : 1. Add more important v ariables to the model 2. Use time series if y o u r resid u als are related o v er time FORECASTING PRODUCT DEMAND IN R

  4. E x amine Resid u als 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

  5. Resid u al Plots FORECASTING PRODUCT DEMAND IN R

  6. Let ' s practice ! FOR E C ASTIN G P R OD U C T D E MAN D IN R

  7. Forecasting resid u als FOR E C ASTIN G P R OD U C T D E MAN D IN R Aric LaBarr , Ph . D . Senior Data Scientist , Elder Research

  8. Regression Pieces FORECASTING PRODUCT DEMAND IN R

  9. ARIMA on Resid u als M_hi_arima <- auto.arima(M_hi_full_res) summary(M_hi_arima) Series: M_hi_full_res ARIMA(2,0,1) with zero mean Coefficients: ar1 ar2 ma1 1.0077 -0.5535 -0.4082 s.e. 0.1291 0.0800 0.1412 sigma^2 estimated as 0.01078: log likelihood=131.45 AIC=-254.9 AICc=-254.63 BIC=-242.75 FORECASTING PRODUCT DEMAND IN R

  10. Forecasting Resid u als for_M_hi_arima <- forecast(M_hi_arima, h = 22) dates_valid <- seq(as.Date("2017-01-01"), length = 22, by = "weeks") for_M_hi_arima <- xts(for_M_hi_arima$mean, order.by = dates_valid) head(for_M_hi_arima, n = 5) [,1] 2017-01-01 0.13888498 2017-01-08 -0.09448731 2017-01-15 -0.17209098 2017-01-22 -0.12112306 2017-01-29 -0.02680729 FORECASTING PRODUCT DEMAND IN R

  11. Vis u ali z ing Forecasted Resid u als plot(for_M_hi_arima) FORECASTING PRODUCT DEMAND IN R

  12. Let ' s practice ! FOR E C ASTIN G P R OD U C T D E MAN D IN R

  13. Transfer F u nctions & Ensembling FOR E C ASTIN G P R OD U C T D E MAN D IN R Aric LaBarr , Ph . D . Senior Data Scientist , Elder Research

  14. Combining Techniq u es M u ltiple w a y s to combine forecasting techniq u es : 1. Transfer F u nctions - e v er y thing gets b u ilt into one model 2. Ensembling - " A v erage " m u ltiple t y pes of model forecasts FORECASTING PRODUCT DEMAND IN R

  15. Combining Techniq u es - Transfer F u nctions FORECASTING PRODUCT DEMAND IN R

  16. Combining Forecasts FORECASTING PRODUCT DEMAND IN R

  17. Mathematics in the Backgro u nd Combining t w o di � erent techniq u es into one mathematicall y: log( Y ) = β + β log( X ) + β X + ... + ε 0 1 2 2 t t t ε = α + α ε + α ε + ... + ϵ 0 1 t −1 2 t −2 t Combining the forecasts into one mathematicall y: ^ log( Y ) = log( ) + ^ Y t ε t t ^ Y = × exp( ) ^ Y t ε t FORECASTING PRODUCT DEMAND IN R

  18. Transfer F u nction E x ample for_M_hi_arima <- exp(for_M_hi_arima) for_M_hi_final <- pred_M_hi_xts * for_M_hi_arima M_hi_v <- bev_xts_valid[,"M.hi"] MAE <- mean(abs(for_M_hi_final - M_hi_v)) MAPE <- 100*mean(abs((for_M_hi_final - M_hi_v)/M_hi_v)) print(MAE) [1] 61.46033 print(MAPE) [1] 13.45189 FORECASTING PRODUCT DEMAND IN R

  19. Combining Forecasts - Ensembling FORECASTING PRODUCT DEMAND IN R

  20. Time Series for Demand M_hi_model_arima <- auto.arima(M_hi) summary(M_hi_model_arima) Series: M_hi ARIMA(4,0,2) with non-zero mean Coefficients: ar1 ar2 ar3 ar4 ma1 ma2 mean -0.1332 0.1546 -0.2638 -0.2063 0.7622 0.0492 458.7097 s.e. 0.4729 0.4150 0.2542 0.1399 0.4807 0.3204 5.7040 sigma^2 estimated as 3323: log likelihood=-839.66 AIC=1695.33 AICc=1696.32 BIC=1719.62 FORECASTING PRODUCT DEMAND IN R

  21. dates_valid <- seq(as.Date("2017-01-01"), length = 22, by = "weeks") for_M_hi_xts <- xts(for_M_hi$mean, order.by = dates_valid) MAE <- mean(abs(for_M_hi_xts - M_hi_v)) MAPE <- 100*mean(abs((for_M_hi_xts - M_hi_v)/M_hi_v)) print(MAE) [1] 71.43732 print(MAPE) [1] 16.29178 FORECASTING PRODUCT DEMAND IN R

  22. Ensembling E x ample for_M_hi_en <- 0.5*(for_M_hi_xts + pred_M_hi_xts) MAE <- mean(abs(for_M_hi_en - M_hi_v)) MAPE <- 100*mean(abs((for_M_hi_en - M_hi_v)/M_hi_v)) print(MAE) [1] 64.12486 print(MAPE) [1] 14.38913 FORECASTING PRODUCT DEMAND IN R

  23. Let ' s practice ! FOR E C ASTIN G P R OD U C T D E MAN D IN R

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend