powered by
Prints the output of predict on an arfima object
predict
arfima
# S3 method for predarfima print(x, digits = max(6, getOption("digits") - 3), ...)
x is returned invisibly
x
An object of class "predarfima"
The number of digits to print
Currently not used
JQ (Justin) Veenstra
Prints all the relavent output of the prediction function of the arfima package
arfima, predict.arfima, predict, plot.predarfima
predict.arfima
plot.predarfima
set.seed(82365) sim <- arfima.sim(1000, model = list(dfrac = 0.4, theta=0.9, dint = 1)) fit <- arfima(sim, order = c(0, 1, 1), back=TRUE) fit pred <- predict(fit, n.ahead = 5) pred plot(pred)
Run the code above in your browser using DataLab