The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"Long term time series prediction"
I have created a model to predict the next value of a time series from three previous values (now real data for now, just trying). It predicts the training data well, but I would like it to go further: it should append the predicted value to the original ones and use it to create another prediction window (predict based on predicted values).
Example:
Example:
How do I do this in RapidMiner if it is possible at all? Are there other options for long term time series prediction?
window | prediction
1 2 3 | 4p
2 3 4p | 5p
3 4p 5p | 6p
4p 5p 6p | 7p
...
Tagged:
0
Answers
I would rather recommend to build a model for each horizon you are planning to predict. With this way, you can evaluate each single model and get a reliable estimation of the accuracy of the model. Otherwise the model errors will just multiply and you won't even notice it.
Greetings,
Sebastian
Regards,
Marius
If you think that you really need your setup as you described it, probably a bulky construction with loops and some preprocessing operators might work.