tidy.croston {fable} | R Documentation |
Returns the coefficients from the model in a tibble
format.
## S3 method for class 'croston'
tidy(x, ...)
x |
An object to be converted into a tidy |
... |
Additional arguments to tidying method. |
The model's coefficients in a tibble
.
library(tsibble)
sim_poisson <- tsibble(
time = yearmonth("2012 Dec") + seq_len(24),
count = rpois(24, lambda = 0.3),
index = time
)
sim_poisson %>%
model(CROSTON(count)) %>%
tidy()