tidy.VAR: Tidy a fable model

View source: R/var.R

tidy.VARR Documentation

Tidy a fable model

Description

Returns the coefficients from the model in a tibble format.

Usage

## S3 method for class 'VAR'
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

lung_deaths <- cbind(mdeaths, fdeaths) %>%
  as_tsibble(pivot_longer = FALSE)

lung_deaths %>%
  model(VAR(vars(mdeaths, fdeaths) ~ AR(3))) %>%
  tidy()

fable documentation built on May 29, 2024, 7:25 a.m.