tidy.model_mean: Tidy a fable model

View source: R/mean.R

tidy.model_meanR Documentation

Tidy a fable model

Description

Returns the coefficients from the model in a tibble format.

Usage

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

library(tsibbledata)
vic_elec %>%
  model(avg = MEAN(Demand)) %>%
  tidy()

tidyverts/tidyforecast documentation built on Dec. 2, 2024, 8 a.m.