Skip to contents

Return the estimated coefficients from a trained ESN as tibble.

Usage

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

Arguments

x

An object of class ESN.

...

Currently not in use.

Value

Coefficients extracted from the object.

Examples

library(tsibble)
library(fable)
AirPassengers %>%
as_tsibble() %>%
model("ESN" = ESN(value)) %>%
tidy()
#> # A tibble: 58 × 3
#>    .model term        estimate
#>    <chr>  <chr>          <dbl>
#>  1 ESN    (Intercept)   0.145 
#>  2 ESN    state(01)    -0.209 
#>  3 ESN    state(02)     0.0958
#>  4 ESN    state(03)     0.139 
#>  5 ESN    state(04)     0.0344
#>  6 ESN    state(05)     0.125 
#>  7 ESN    state(06)     0.0520
#>  8 ESN    state(07)    -0.284 
#>  9 ESN    state(08)     0.425 
#> 10 ESN    state(09)    -0.136 
#> # ℹ 48 more rows