tidy.ESN {echos} | R Documentation |
Estimated coefficients
Description
Return the estimated coefficients from a trained ESN as
tibble
.
Usage
## S3 method for class 'ESN'
tidy(x, ...)
Arguments
x |
An object of class |
... |
Currently not in use. |
Value
Coefficients extracted from the object.
Examples
library(tsibble)
library(fable)
AirPassengers %>%
as_tsibble() %>%
model("ESN" = ESN(value)) %>%
tidy()
[Package echos version 1.0.2 Index]