Returns the coefficients from the model in a tibble
format.
# S3 method for class 'RW'
tidy(x, ...)
An object to be converted into a tidy tibble::tibble()
.
Additional arguments to tidying method.
The model's coefficients in a tibble
.
as_tsibble(Nile) %>%
model(NAIVE(value)) %>%
tidy()
#> # A tibble: 0 × 6
#> # ℹ 6 variables: .model <chr>, term <chr>, estimate <dbl>, std.error <dbl>,
#> # statistic <dbl>, p.value <dbl>
library(tsibbledata)
aus_production %>%
model(snaive = SNAIVE(Beer ~ lag("year"))) %>%
tidy()
#> # A tibble: 0 × 6
#> # ℹ 6 variables: .model <chr>, term <chr>, estimate <dbl>, std.error <dbl>,
#> # statistic <dbl>, p.value <dbl>