tidy.TSLM: Tidy a fable model

View source: R/lm.R

tidy.TSLMR Documentation

Tidy a fable model

Description

Returns the coefficients from the model in a tibble format.

Usage

## S3 method for class 'TSLM'
tidy(x, ...)

Arguments

x

An object to be converted into a tidy tibble::tibble().

...

Additional arguments to tidying method.

Value

The model's coefficients in a tibble.

Examples

as_tsibble(USAccDeaths) %>%
  model(lm = TSLM(log(value) ~ trend() + season())) %>%
  tidy()

fable documentation built on March 31, 2023, 8:13 p.m.