Learn R Programming

fabletools (version 0.5.0)

glance.mdl_df: 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 mdl_df
glance(x, ...)

# S3 method for mdl_ts glance(x, ...)

Arguments

x

A mable.

...

Arguments for model methods.

Examples

Run this code
if (FALSE) { # requireNamespace("fable", quietly = TRUE)
library(fable)
library(tsibbledata)

olympic_running %>%
  model(lm = TSLM(log(Time) ~ trend())) %>% 
  glance()
}

Run the code above in your browser using DataLab