powered by
Returns the coefficients from the model in a tibble format.
tibble
# S3 method for croston tidy(x, ...)
The model's coefficients in a tibble.
An object to be converted into a tidy tibble::tibble().
tibble::tibble()
Additional arguments to tidying method.
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()
Run the code above in your browser using DataLab