Late departure to the party, but certainly the ideal solution for creating SARIMA (p,d,q)(P,D,Q)[S] models without data preparation, since it significantly reduces the threshold. Recently, a SARIMA object SARIMA been added to the gmwm package ( disclaimer: author).
This function is currently located on GitHub , and therefore the syntax may change.
Generation Code Example
# install.packages("devtools") devtools::install_github("smac-group/gmwm")
Output:
Call: arima(x = xt, order = c(1, 0, 1), seasonal = list(order = c(1, 0, 0), period = 12), include.mean = F) Coefficients: ar1 ma1 sar1 0.5728 0.3117 0.5035 se 0.0335 0.0371 0.0274 sigma^2 estimated as 1.008: log likelihood = -1424.89, aic = 2857.78
Miscellaneous: Update this post in gmwm v3.0.0 release.
source share