| forecast.croston {fable} | R Documentation |
Produces forecasts from a trained model.
## S3 method for class 'croston' forecast(object, new_data, specials = NULL, ...)
object |
The time series model used to produce the forecasts |
new_data |
A |
specials |
(passed by |
... |
Additional arguments for forecast model methods. |
A list of forecasts.
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()