Options

Stationary data for use in ARIMA model

BarclaeysBarclaeys Member Posts: 18 Learner I
edited August 2020 in Help
All, I'm trying to build an ARIMA time series model. Web reading tells me my data should be stationary whereas my data set is not (STL decomposition shows trend + strong seasonality).

Q1: does my data need to be stationary for Arima
Q2: How can I make data stationary using RapidMiner?

Thank you,
Bart
Tagged:

Answers

  • Options
    tftemmetftemme Administrator, Employee, RapidMiner Certified Analyst, RapidMiner Certified Expert, RMResearcher, Member Posts: 164 RM Research
    Hi @Barclaeys

    To be exact, you need stationary data for an ARMA model. Thats the reason for the "I" in ARIMA. It stands for integrated and means that first your input data is differentiated d-times (d is a parameter of the ARIMA model) and then an ARMA model is fitted to the differentiated data (the differentiated data is expected to be stationary). The forecast is calculated by integrating the predicted values of the ARMA model. So you could try to use d=1 or 2 in your fitting. Would not recommend to use a higher value, cause this leads to a often unstable fitting (training) of the ARIMA model.

    If you have trend and especially if you have strong seasonality, I would even recommend, not to use ARIMA for forecasting. Holt-Winters, Exponential Smoothing and Function and Seasonal Component Forecast all have different ways to handle seasonality.

    Hopes this helps
    Fabian


  • Options
    BarclaeysBarclaeys Member Posts: 18 Learner I
    Thank you Fabian!
Sign In or Register to comment.