Low-Level ARIMA function for translating modeltime to forecast
auto_arima_fit_impl(
x,
y,
period = "auto",
max.p = 5,
max.d = 2,
max.q = 5,
max.P = 2,
max.D = 1,
max.Q = 2,
...
)
A dataframe of xreg (exogenous regressors)
A numeric vector of values to fit
A seasonal frequency. Uses "auto" by default. A character phrase of "auto" or time-based phrase of "2 weeks" can be used if a date or date-time variable is provided.
The maximum order of the non-seasonal auto-regressive (AR) terms.
The maximum order of integration for non-seasonal differencing.
The maximum order of the non-seasonal moving average (MA) terms.
The maximum order of the seasonal auto-regressive (SAR) terms.
The maximum order of integration for seasonal differencing.
The maximum order of the seasonal moving average (SMA) terms.
Additional arguments passed to forecast::auto.arima