Build and compare TimeSeries on sequential data.

Parameters:

Parameters:
See dedicated page for more information.
Use this node to compute ETS, STLF, ARIMA and Holt-Winters models.
At the very least, you need to have two series: one with dates (YYYY-MM-dd or YYYY/MM/dd or any separators, as long as the order and number of characters is respected).
Then, you need to specify the time units between observations (Unit of Time). ETL will attempt to do it for you, and if it doesn’t match the data, it will recode it. But it’s always better to help the software.
Then, specify on which time frame you wish to run the analysis (Aggregate Time Series) to get smoother – and usually better – results. You can specify whether you want the sum or the average computed

Then, you can optionally uncheck the algorithms you don’t want to run (because you know what you are doing... or leave them all checked and let R figure out which one works.

When you run the algorithms, make sure you force ETL to write cache: right click on the object and set the option
You can set some advanced parameters for the decomposition, for ARIMA and for Holt Winters.

Outputs
If you are lucky (you have a data structure that fits the time series framework) you will get the following plot:

Here, we can observe the decomposition of trend, seasonality and error of the data, a action plot showing the distribution (error) per time unit, and the results of each algorithm.
You can pick the one with the lowest MAE, of look at the diagnostics for more KPIs:

The same information is available in the second output pin:

The first output pin will give you the computed estimates for each observation, as well as the prediction for all successful algorithms (for those, the original observation will be set to 0)

If we are unlucky, the time series will fail to decompose, and /or you may end up with constant estimates (when the algorithms doesn’t simply fail). In this case, only the action plot and timeSeries plots will be returned. You will also see and error message in the log telling you what happened (in R dialect)

In this case, STLF and Holt Winters failed, Arima and ETS failed without crashing, and simply return a constant prediction. The reason here is obvious: there is not enough data to find cycles!
