powered by
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.
mdl_df
filter_esn(object)
An object of class mdl_df in long-format.
An object of class mdl_df, containing an ESN model.
library(tsibble) library(fable) AirPassengers %>% as_tsibble() %>% model("ESN" = ESN(value)) %>% filter_esn()
Run the code above in your browser using DataLab