View source: R/methods-fable.R
glance.ESN | R Documentation |
Return summary statistics from trained ESN models during random search as tibble.
model
: Model identifier.
loglik
: Log-likelihood.
nobs
: Number of observations.
df
: Effective degrees of freedom.
lambda
: Regularization parameter.
aic
: Akaike Information Criterion.
aicc
: Corrected Akaike Information Criterion.
bic
: Bayesian Information Criterion.
hqc
: Hannan-Quinn Information Criterion.
mse
: Mean Squared Error.
mae
: Mean Absolute Error.
## S3 method for class 'ESN'
glance(x, ...)
x |
An object of class |
... |
Currently not in use. |
Summary statistics extracted from the object.
library(tsibble)
library(fable)
AirPassengers %>%
as_tsibble() %>%
model("ESN" = ESN(value)) %>%
glance()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.