Learn R Programming

echos (version 1.0.2)

report.ESN: Provide a detailed summary of the trained ESN model

Description

Provide a detailed summary of the trained ESN model. The function is a wrapper for summary.esn().

Usage

# S3 method for ESN
report(object, ...)

Value

Print detailed model summary.

Arguments

object

An object of class mdl_df, containing an ESN model.

...

Currently not in use.

Examples

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

Run the code above in your browser using DataLab