Skip to contents

ARIMA model. Calls forecast::Arima() from package forecast.

Dictionary

This Learner can be instantiated via the dictionary mlr_learners or with the associated sugar function lrn():

mlr_learners$get("fcst.arima")
lrn("fcst.arima")

Meta Information

  • Task type: “fcst”

  • Predict Types: “response”, “quantiles”

  • Feature Types: “logical”, “integer”, “numeric”, “Date”

  • Required Packages: mlr3, mlr3forecast, forecast

Parameters

IdTypeDefaultLevels
orderuntypedc(0L, 0L, 0L)
seasonaluntypedc(0L, 0L, 0L)
include.meanlogicalTRUETRUE, FALSE
include.driftlogicalFALSETRUE, FALSE
biasadjlogicalFALSETRUE, FALSE
methodcharacterCSS-MLCSS-ML, ML, CSS

References

Hyndman, R.J., Athanasopoulos, G. (2018). Forecasting: principles and practice, 2nd edition. OTexts, Melbourne, Australia. https://OTexts.com/fpp2/.

See also

Other Learner: LearnerFcst, mlr_learners_fcst.arfima, mlr_learners_fcst.auto_arima, mlr_learners_fcst.bats, mlr_learners_fcst.ets, mlr_learners_fcst.tbats

Methods

Inherited methods


Method new()

Creates a new instance of this R6 class.

Usage


Method clone()

The objects of this class are cloneable with this method.

Usage

LearnerFcstArima$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.