Learn R Programming

fable (version 0.4.0)

tidy.RW: Tidy a fable model

Description

Returns the coefficients from the model in a tibble format.

Usage

# S3 method for RW
tidy(x, ...)

Value

The model's coefficients in a tibble.

Arguments

x

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

...

Additional arguments to tidying method.

Examples

Run this code
as_tsibble(Nile) %>%
  model(NAIVE(value)) %>%
  tidy()

library(tsibbledata)
aus_production %>%
  model(snaive = SNAIVE(Beer ~ lag("year"))) %>%
  tidy()

Run the code above in your browser using DataLab