Learn R Programming

echos (version 1.0.3)

plot.esn: Plot internal states of a trained ESN model

Description

Plot internal states (i.e., the reservoir) of a trained ESN model as line chart.

Usage

# S3 method for esn
plot(x, ...)

Value

Line chart of internal states.

Arguments

x

An object of class esn. The result of a call to train_esn().

...

Further arguments passed to matplot().

See Also

Other base functions: forecast_esn(), is.esn(), is.forecast_esn(), is.tune_esn(), plot.forecast_esn(), plot.tune_esn(), print.esn(), summary.esn(), summary.tune_esn(), train_esn(), tune_esn()

Examples

Run this code
xdata <- as.numeric(AirPassengers)
xmodel <- train_esn(y = xdata)
plot(xmodel)

Run the code above in your browser using DataLab