# 1 step ahead parametric forecast
tsibbledata::aus_production |>
fabletools::model(manual_ing = INGARCH(Beer ~ pq(1,1) + PQ(1,1))) |>
dplyr::select(manual_ing) |>
fabletools::forecast(h = 1)
# Multiples steap ahead parametric bootstrap forecast
tsibbledata::aus_production |>
fabletools::model(manual_ing = INGARCH(Beer ~ pq(1,1) + PQ(1,1))) |>
dplyr::select(manual_ing) |>
fabletools::forecast(h = 4)
Run the code above in your browser using DataLab