Returns the coefficients from the model in a tibble format.

# S3 method for 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()
#> # A tibble: 1 × 6
#>   .model term  estimate std.error statistic p.value
#>   <chr>  <chr>    <dbl>     <dbl>     <dbl>   <dbl>
#> 1 avg    mean     4665.      3.81     1224.       0