Learn R Programming

echos (version 1.0.2)

print.esn: Print model specification of the trained ESN model

Description

Provides a compact overview of the model specification in the format ESN({n_states, alpha, rho}, {n_models, df}).

Usage

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

Value

Print specification of the trained ESN model.

Arguments

x

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

...

Currently not in use.

Examples

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

Run the code above in your browser using DataLab