sform | R Documentation |
sform
finds the structural form for an ARIMA model from its the
eventual forecast function.
sform(mdl, ...)
## S3 method for class 'um'
sform(
mdl,
z = NULL,
msoe = TRUE,
index = NULL,
nnls = NULL,
cform = TRUE,
tol = 1.490116e-08,
envir = NULL,
...
)
mdl |
an object of class |
... |
other arguments. |
z |
an optional time series. |
msoe |
logical, TRUE for multiple source of errors and FALSE for single source of error. |
index |
an optional vector of integers both to group common variances or to fix some variances to zero. |
cform |
logical. TRUE for contemporaneous form and FALSE for future form. |
tol |
tolerance to check if the elements of b and C are zero. |
envir |
environment, see " |
An object of class stsm
airl <- um(i = list(1, c(1, 12)), ma = "(1 - 0.8B)(1 - 0.8B12)")
sf <- sform(airl, index = c(1, 0, rep(2, 11)))
sf
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.