Predict with both historical and expected input #648
-
When we predict the future, besides the historical data as input, can we also include expected data as input?
can we also add future weather conditions as input, to see how would the pm25 be in the future if it gets hotter and wetter? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I tried a different approach by padding the future expected value as additional features. Say, we have n features and each of the k sample contains h periods of them. Also we want m expected future control variable. So the X is actually k*(n+m)h 3D array, which not only not only contains the knh time series, but also almost all zero km*h array, with the last period assigned with the expected future value. I tried a little bit and it seems to work. Is it a valid solution or there are better ways? |
Beta Was this translation helpful? Give feedback.
-
This seems like a TSER problem, predicting a value using other time series data rather than predicting the future if I'm correct (seems similar to this data https://zenodo.org/record/3902671)? At least those seem to be the tools you are using currently. I would say the expected values for each series would just be an extension of the current/historical data, you could just add the expected/forecasted data on the end to create a new dataset? This is not really my area of expertise, and I may be misunderstanding the task here though 🙂. |
Beta Was this translation helpful? Give feedback.
This seems like a TSER problem, predicting a value using other time series data rather than predicting the future if I'm correct (seems similar to this data https://zenodo.org/record/3902671)? At least those seem to be the tools you are using currently.
I would say the expected values for each series would just be an extension of the current/historical data, you could just add the expected/forecasted data on the end to create a new dataset? This is not really my area of expertise, and I may be misunderstanding the task here though 🙂.