powered by
Estimate ARMA model coefficients using maximum likelihood
arma(x, p = 0, q = 0)
Returns an ARMA model consisting of a list with the following components.
Vector of AR coefficients (index number equals coefficient subscript)
Vector of MA coefficients (index number equals coefficient subscript)
White noise variance
Akaike information criterion corrected
Standard errors for the AR coefficients
Standard errors for the MA coefficients
Time series data
AR order
MA order
Calls the standard R function arima to estimate AR and MA coefficients. The innovations algorithm is used to estimate white noise variance.
arima
autofit burg hannan ia yw
autofit
burg
hannan
ia
yw
M = c("diff",1) e = Resid(dowj,M) a = arma(e,1,0) print(a)
Run the code above in your browser using DataLab