tidy.RW {fable} | R Documentation |
Tidy a fable model
Description
Returns the coefficients from the model in a tibble
format.
Usage
## S3 method for class 'RW'
tidy(x, ...)
Arguments
x |
An object to be converted into a tidy |
... |
Additional arguments to tidying method. |
Value
The model's coefficients in a tibble
.
Examples
as_tsibble(Nile) %>%
model(NAIVE(value)) %>%
tidy()
library(tsibbledata)
aus_production %>%
model(snaive = SNAIVE(Beer ~ lag("year"))) %>%
tidy()
[Package fable version 0.3.4 Index]