Learn R Programming

fable (version 0.3.2)

tidy.VAR: Tidy a fable model

Description

Returns the coefficients from the model in a tibble format.

Usage

# S3 method for VAR
tidy(x)

Value

The model's coefficients in a tibble.

Arguments

x

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

Examples

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

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

Run the code above in your browser using DataLab