Learn R Programming

echos (version 1.0.2)

tidy.ESN: Estimated coefficients

Description

Return the estimated coefficients from a trained ESN as tibble.

Usage

# S3 method for ESN
tidy(x, ...)

Value

Coefficients extracted from the object.

Arguments

x

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)) %>%
tidy()

Run the code above in your browser using DataLab