Predict does not take into account future reggressors. #1662
-
Hello, I have a model with future regressors and n_lag = 1 and n_forecasts = 288. I create dataframe for prediction that contains all future known reggresors. However the prediction itself does not take them into account and thus the prediction is invalid. If I use the same model without autocorrelation. It take the predictions in to account, because it disregards the n_forecasts parameter. Could you help me with it? Does anybody faces the same issue? I have double checked everything. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It is actually due to the issue with make_future_dataframe which deletes the regressors from the model. #1650 |
Beta Was this translation helpful? Give feedback.
It is actually due to the issue with make_future_dataframe which deletes the regressors from the model. #1650