powered by
Produces forecasts from a trained model.
# S3 method for croston forecast(object, new_data, specials = NULL, ...)
A list of forecasts.
The time series model used to produce the forecasts
A tsibble containing future information used to forecast.
tsibble
(passed by fabletools::forecast.mdl_df()).
fabletools::forecast.mdl_df()
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)) %>% forecast()
Run the code above in your browser using DataLab