ucarima_model | R Documentation |
Creates an UCARIMA model, which is composed of ARIMA models with independent innovations.
ucarima_model(model = NULL, components, complements = NULL, checkmodel = FALSE)
model |
The reduced model. Usually not provided. |
components |
The ARIMA models representing the components |
complements |
Complements of (some) components. Usually not provided |
checkmodel |
When the model is provided and checkmodel is TRUE, we check that it indeed corresponds to the reduced form of the components; similar controls are applied on complements. Currently not implemented |
A list with the reduced model, the components and their complements
mod1 <- arima_model("trend", delta = c(1, -2, 1))
mod2 <- arima_model("noise", var = 1600)
hp <- ucarima_model(components = list(mod1, mod2))
print(hp$model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.