R/mean.R
tidy.model_mean.Rd
Returns the coefficients from the model in a tibble format.
tibble
# S3 method for class 'model_mean' tidy(x, ...)
An object to be converted into a tidy tibble::tibble().
tibble::tibble()
Additional arguments to tidying method.
The model's coefficients in a tibble.
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