Plot internal states (i.e., the reservoir) of a trained ESN model as line chart.
Usage
# S3 method for class 'esn'
plot(x, ...)
Arguments
- x
An object of class
esn
. The result of a call totrain_esn()
.- ...
Further arguments passed to
matplot()
.
Examples
xdata <- as.numeric(AirPassengers)
xmodel <- train_esn(y = xdata)
plot(xmodel)