"How to perform ARIMA"
ratheesan
New Altair Community Member
Answers
-
Hi,
we don't have an explicit ARIMA operator in rapid miner, but I think you could get the same if you apply a MovingAverage operator at first, then window the data and apply a linear regression on the windowed data.
You have to look in the preprocessing/series group. Take a deeper look on all operator descriptions there.
Greetings,
Sebastian0 -
Hi,
I followed the method you mentioned above.I used WindowExamples2ModelingData operator.But i am not getting the idea about label-name-stem.
Thanks
Ratheesan0 -
Hi,
the label name stem is actually only the name of the label attribute before windowing. After windowing you should have something like label-0, label-1, label-2 and so on, denoting the value of the label in the indexed time points. The stem then would be "label".
Greetings,
Sebastian0 -
Hi,
Whenever I am working with WindowExamples2ModelingData operator I am getting "NumberFormatException caught for Input String" message. Any suggestion regarding this?
Thanks,
Ratheesan0 -
Hi,
here's a small example process. I hope this will guide you around the pitfalls in this area. If you add a few breakpoints, you will see, what each operator does.<operator name="Root" class="Process" expanded="yes">
Greetings,
<operator name="ExampleSetGenerator" class="ExampleSetGenerator">
<parameter key="target_function" value="sum"/>
<parameter key="number_of_attributes" value="50"/>
</operator>
<operator name="ChangeAttributeRole" class="ChangeAttributeRole">
<parameter key="name" value="label"/>
</operator>
<operator name="MultivariateSeries2WindowExamples" class="MultivariateSeries2WindowExamples">
<parameter key="window_size" value="10"/>
</operator>
<operator name="WindowExamples2ModelingData" class="WindowExamples2ModelingData">
<parameter key="label_name_stem" value="label"/>
</operator>
<operator name="LinearRegression" class="LinearRegression">
<parameter key="keep_example_set" value="true"/>
</operator>
<operator name="ModelApplier" class="ModelApplier">
<list key="application_parameters">
</list>
</operator>
<operator name="WindowExamples2OriginalData" class="WindowExamples2OriginalData">
</operator>
</operator>
Sebastian0