Learn R Programming

echos (version 1.0.3)

reservoir: Return the reservoir from a trained ESN as tibble

Description

Return the reservoir (internal states) from a trained ESN as tibble. The function works only for models of class ESN.

Usage

reservoir(object)

Value

A tibble containing the reservoir (internal states).

Arguments

object

An object of class mdl_df, containing an ESN model.

See Also

Other tidy functions: ESN(), filter_esn(), fitted.ESN(), forecast.ESN(), glance.ESN(), model_sum.ESN(), report.ESN(), residuals.ESN(), tidy.ESN()

Examples

Run this code
library(tsibble)
library(fable)
AirPassengers %>%
as_tsibble() %>%
model("ESN" = ESN(value)) %>%
reservoir()

Run the code above in your browser using DataLab