| seasadj | R Documentation |
seasadj removes the seasonal component of time series.
seasadj(mdl, ...)
## S3 method for class 'um'
seasadj(
mdl,
z = NULL,
method = c("ucarima", "ucarima0", "ssm", "ssm0", "mixed", "forecast", "backcast"),
envir = parent.frame(),
...
)
mdl |
An object of class |
... |
Additional arguments passed to internal methods. |
z |
an object of class |
method |
Character string specifying the decomposition method. Options are:
|
envir |
environment in which the function arguments are evaluated. If NULL the calling environment of this function will be used. |
seasadj returns a seasonal adjusted time series.
Y <- AirPassengers
um1 <- um(Y, bc = TRUE, i = list(1, c(1,12)), ma = list(1, c(1,12)))
Y <- seasadj(um1)
ide(Y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.