Hello. I'm using Visual forecasting. While using atsm package in TSMODEL procedure, I wonder the difference diagnose.setOption('back', 6) forecast.setOption('back',6) diagnose.setOption('holdout', 6) forecast.setOption('holdout',6) Last time, i get answer <What is the difference of diagnose.setOption('holdout') and forecast.setOption('holdout')??> like this. All options for diagnose object determine how to choose best models from model families; all options for forecast objects determine how to choose the best model from model selection list. For example, in this example code, ARIMA and ESM model families are enabled, so the diagnose.setOption('holdout') helps choose one model from ARIMA family and one model from ESM family. If you don't set this option explicitly, it will use the default value 0 for holdout. After you already have a list of models, the forecast object forecast.setOption('holdout') helps select the best model among this list. If you don't set this option explicitly, it will use the default value 0 for holdout when making this decision. So in your case, when you want to use non-zero holdout, you might want to specify this options in both objects to be consistent. But i'm still wondering these options and i want to know more. diagnose.setOption('back', 6) & forecast.setOption('back',6) Also Are these options difference same?? When I use BACK or HOLDOUT Options, dose these options estimate Y or use other method of forecasting?? I draw what i think about Back & Holdout , Is this alright? If I use ARIMAX model, does BACK Option estimate X or use other method of forecasting(eg. reflect X actual values...)?? Also, does HOLDOUT Option estimate X or use other method of forecasting?? Thank u 🙂
... View more