R/arima.R
arima_model.Rd
ARIMA Model
arima_model(name = "arima", ar = 1, delta = 1, ma = 1, variance = 1)
Name of the model.
coefficients of the regular auto-regressive polynomial (1 + ar(1)B + ar(2)B + ...). True signs.
non stationary auto-regressive polynomial.
coefficients of the regular moving average polynomial (1 + ma(1)B + ma(2)B + ...). True signs.
variance.
a "JD3_ARIMA" model.
"JD3_ARIMA"
model <- arima_model("trend", ar = c(1, -.8), delta = c(1, -1), ma = c(1, -.5), var = 100)