powered by
Extracts the coefficients from a arfima fit.
arfima
# S3 method for arfima coef(object, tpacf = FALSE, digits = max(4, getOption("digits") - 3), ...)
A matrix of coefficients. The rows are for the modes, and the columns are for the model variables.
A fitted arfima object.
If TRUE, the (ARMA) coefficients are in the transformed PACF space.
TRUE
The number of digits to print
Other optional arguments. Currently not used.
JQ (Justin) Veenstra
# \donttest{ set.seed(8564) sim <- arfima.sim(1000, model = list(phi = c(0.2, 0.1), dfrac = 0.4, theta = 0.9)) fit <- arfima(sim, order = c(2, 0, 1), back=TRUE) fit coef(fit) # }
Run the code above in your browser using DataLab