glance.mdl_df {fabletools} | R Documentation |
Glance a mable
Description
Uses the models within a mable to produce a one row summary of their fits. This typically contains information about the residual variance, information criterion, and other relevant summary statistics. Each model will be represented with a row of output.
Usage
## S3 method for class 'mdl_df'
glance(x, ...)
## S3 method for class 'mdl_ts'
glance(x, ...)
Arguments
x |
A mable. |
... |
Arguments for model methods. |
Examples
library(fable)
library(tsibbledata)
olympic_running %>%
model(lm = TSLM(log(Time) ~ trend())) %>%
glance()
[Package fabletools version 0.4.2 Index]