What is the difference between dynamic_dfs and X_df when making forecasts? #230
Replies: 1 comment
-
Hey @davidrpugh, thanks for using mlforecast. They're both meant to do the same, which is providing future values of exogenous features. The For your example I think they should all be included in Please let us know if you have further doubts. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the awesome times series forecasting libraries! I am teaching myself your libraries by working my way through the Kaggle Store Sales Time Series Forecasting competition.
I am trying to understand the difference between
dynamic_dfs
andX_df
arguments to thepredict
method. What is the difference?In the store sales competition there is a variable for oil price whose values we are given for the forecasting window. This seems like it should be included in
X_df
as the price of oil is not impacted by store sales. However, there are other variableson promotion
andtransactions
whose values could conceivably depend onsales
. Should these variables be included asdynamic_dfs
?Beta Was this translation helpful? Give feedback.
All reactions