Returns TRUE if the object is of class tune_esn.
See also
Other base functions:
forecast_esn(),
is.esn(),
is.forecast_esn(),
plot.esn(),
plot.forecast_esn(),
plot.tune_esn(),
print.esn(),
summary.esn(),
summary.tune_esn(),
train_esn(),
tune_esn()
Examples
xdata <- as.numeric(AirPassengers)
fit <- tune_esn(
y = xdata,
n_ahead = 12,
n_split = 5,
alpha = c(0.5, 1),
rho = c(1.0),
tau = c(0.4),
inf_crit = "bic"
)
is.tune_esn(fit)
#> [1] TRUE
