sarima_estimate | R Documentation |
Estimate SARIMA Model
sarima_estimate(
x,
order = c(0, 0, 0),
seasonal = list(order = c(0, 0, 0), period = NA),
mean = FALSE,
xreg = NULL,
eps = 1e-09
)
x |
a univariate time series. |
order |
vector specifying of the non-seasonal part of the ARIMA model: the AR order, the degree of differencing, and the MA order. |
seasonal |
specification of the seasonal part of the ARIMA model and the seasonal frequency (by default equals to |
mean |
should the SARIMA model include an intercept term. |
xreg |
vector or matrix of external regressors. |
eps |
precision. |
y <- ABS$X0.2.09.10.M
sarima_estimate(y, order = c(0, 1, 1), seasonal = c(0, 1, 1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.