Hello all,
https://www.knime.com/blog/multivariate-time-series-analysis-lstm-codeless
In this article the author states that you can use recursive loops if you would like to predict the demand not only for the next hour but longer. Both workflows the authors recommends as starting points show a univariate time series prediction.
Is this even possible for a multivariate time series analysis?
If I have a single time series (e.g. historical sales data per day or month) I could predict the value for the next time step, then take this predicted value as another input value and repeat the forecast with a recursive loop (iterative approach, out-of-sample forecast).
But how can I do this with multiple different input variables? How can I take the predicted value of the next time step as another input variable and repeat the forecast so that I get more than one future time steps?
Thanks for your support!