View source: R/regarima_spec.R
set_arima | R Documentation |
Function to set the ARIMA model when the automatic modelling is disabled.
set_arima( x, mean = NA, mean.type = c(NA, "Undefined", "Fixed", "Initial"), p = NA, d = NA, q = NA, bp = NA, bd = NA, bq = NA, coef = NA, coef.type = c(NA, "Undefined", "Fixed", "Initial") )
x |
the specification. |
mean |
to set the coefficient of the mean. If |
mean.type |
a character defining the mean coefficient estimation procedure.
Possible procedures are: |
p, d, q, bp, bd, bq |
to specify the order of the SARIMA model in the form ARIMA(p,d,q)(bp,bd,bd). |
coef |
a vector providing the coefficients for the regular and seasonal AR and MA polynominals.
The vector length must be equal to the sum of the regular and seasonal AR and MA orders.
The coefficients shall be provided in the following order: regular AR (Phi; |
coef.type |
a vector defining the ARMA coefficients estimation procedure.
Possible procedures are: |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.