predict.um | R Documentation |
predict
computes point and interval predictions for a time series
from models of class um
.
## S3 method for class 'um'
predict(
object,
z = NULL,
ori = NULL,
n.ahead = 1,
level = 0.95,
i = NULL,
envir = NULL,
...
)
object |
an object of class |
z |
an object of class |
ori |
the origin of prediction. By default, it is the last observation. |
n.ahead |
number of steps ahead. |
level |
confidence level. |
i |
transformation of the series |
envir |
environment in which the function arguments are evaluated. If NULL the calling environment of this function will be used. |
... |
additional arguments. |
An object of class "tfm
".
Z <- AirPassengers
um1 <- um(Z, i = list(1, c(1, 12)), ma = list(1, c(1, 12)), bc = TRUE)
p <- predict(um1, n.ahead = 12)
p
plot(p, n.back = 60)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.