Learn R Programming

echos (version 1.0.2)

filter_esn: Filter ESN models

Description

Filter an object of class mdl_df ("mable") to include ESN models only, i.e., other models like ARIMA or ETS are excluded from the mable.

Usage

filter_esn(object)

Value

An object of class mdl_df in long-format.

Arguments

object

An object of class mdl_df, containing an ESN model.

Examples

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

Run the code above in your browser using DataLab