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.136  
#>  3 ESN    state(02)    0.181  
#>  4 ESN    state(03)   -0.236  
#>  5 ESN    state(04)    0.125  
#>  6 ESN    state(05)    0.00239
#>  7 ESN    state(06)    0.159  
#>  8 ESN    state(07)   -0.272  
#>  9 ESN    state(08)    0.364  
#> 10 ESN    state(09)   -0.00736
#> # ℹ 48 more rows