powered by
Extracts the fitted values.
# S3 method for croston fitted(object, ...)
A vector of fitted values.
The time series model used to produce the forecasts
Additional arguments for forecast model methods.
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