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
Answers
actually we do things a little bit different (and more flexible) in RapidMiner: Instead of building a certain algorithm for processing time series as ARIMA, we transform time series to normal data sets by windowing them. After this is done, a standard learning algorithm (linear regression, SVM, neural net) can be applied to the problem. Of course you can also apply moving averages. Together this one solves then the ARIMA problem, but with the advantage that you can optimize each single step and replace LinearRegression as in original ARIMA by SVM...
Greetings,
Sebastian
Due to I need ARIMA just for comparision towards other methods in RapidMiner I'll try to push data to R script at the moment.
Regards,
Jan
did anyone create an ARIMA operator for RM?
Or a process emulating it?
Or a process using R script so ARIMA can be ran concurently with other processes from within RM? (I have to compare ARIMA with different algorithms and I would like to do it in RM)
PS: ARMA, ARIMAX or similar will also be greatly appreciated.
Cheerz,
Marin
What I do is simply write out the predictions to a file and process them later.
Gives you a clear indication of what is going on and allows you to use a fast ARIMA implementation.
Managed to use the R script operator to call ARIMA, but this can be really slow.
Best regards,
Wessel