View source: R/spec_regarima.R
| set_automodel | R Documentation |
Function allowing to customize Arima model identification procedure.
set_automodel(
x,
enabled = NA,
acceptdefault = NA,
cancel = NA,
ub1 = NA,
ub2 = NA,
reducecv = NA,
ljungboxlimit = NA,
tsig = NA,
ubfinal = NA,
checkmu = NA,
mixed = NA,
balanced = NA,
amicompare = NA
)
x |
the specification to customize, must be a "SPEC" class object (see details). |
enabled |
|
acceptdefault |
|
cancel |
|
ub1 |
|
ub2 |
|
reducecv |
|
ljungboxlimit |
|
tsig |
|
ubfinal |
(REGARIMA/X13 Specific) |
checkmu |
(REGARIMA/X13 Specific) |
mixed |
(REGARIMA/X13 Specific) |
balanced |
(REGARIMA/X13 Specific) |
amicompare |
(TRAMO Specific) |
x specification parameter must be a JD3_X13_SPEC" class object
generated with rjd3x13::x13_spec() (or "JD3_REGARIMA_SPEC" generated
with rjd3x13::spec_regarima() or "JD3_TRAMOSEATS_SPEC" generated with
rjd3tramoseats::spec_tramoseats() or "JD3_TRAMO_SPEC" generated with
rjd3tramoseats::spec_tramo()).
The modified specification (with new ARIMA parameters)
More information on reg-arima modelling in JDemetra+ online documentation: https://jdemetra-new-documentation.netlify.app/
set_arima, set_transform
# Customize a default specification
init_spec <- x13_spec_default
new_spec <- set_automodel(x = init_spec, enabled = FALSE, acceptdefault = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.