Returns the identifiers of the high-frequency indicators used by a fitted
mf_model() object, in the order they enter the bridge equation.
Arguments
- object
A fitted
"mf_model"object returned bymf_model().- ...
Unused.
Examples
gdp_growth <- tsbox::ts_pc(gdp)
#> [value]: 'values'
#> [value]: 'values'
gdp_growth <- tsbox::ts_na_omit(gdp_growth)
#> [value]: 'values'
model <- mf_model(
target = gdp_growth,
indic = baro,
indic_predict = "auto.arima",
indic_aggregators = "mean",
h = 1
)
indicators(model)
#> [1] "baro"
