powered by
arfima
This function is useful if one suspects a mode is spurious and does not want to call the weed function.
removeMode(object, num)
The original object with the mode removed.
An object of class "arfima".
The number of the mode as in the printed value of the object.
JQ (Justin) Veenstra
# \donttest{ set.seed(8765) sim <- arfima.sim(1000, model = list(phi = 0.4, theta = 0.9, dfrac = 0.4)) fit <- arfima(sim, order = c(1, 0, 1), back=TRUE) fit fit <- removeMode(fit, 3) fit # }
Run the code above in your browser using DataLab