View source: R/methods-fable.R
ESN | R Documentation |
Train an Echo State Network (ESN) to a univariate time series.
The function automatically manages data pre-processing, reservoir
generation (i.e., internal states) and model estimation and selection.
The function is a wrapper for train_esn()
and intended to be used
in combination with fabletools::model()
.
ESN(formula, ...)
formula |
Model specification (currently not in use). |
... |
Further arguments passed to |
An object of class ESN
.
library(tsibble)
library(fable)
AirPassengers %>%
as_tsibble() %>%
model("ESN" = ESN(value))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.