fitted.ESN {echos}R Documentation

Extract fitted values from a trained ESN

Description

Extract fitted values from a trained ESN as tsibble.

Usage

## S3 method for class 'ESN'
fitted(object, ...)

Arguments

object

An object of class mdl_df, containing an ESN model.

...

Currently not in use.

Value

Fitted values extracted from the object.

Examples

library(tsibble)
library(fable)
AirPassengers %>%
as_tsibble() %>%
model("ESN" = ESN(value)) %>%
fitted()


[Package echos version 1.0.2 Index]