I am forecasting hierarchical time series using a FB Prophet model via fable/fable.prophet.
The hierarchy only has two levels (individual data and aggregate). Prophet returns confidence intervals for the individual time series, but not for the reconciled forecasts. Instead, it simply returns the single value estimated.
Data %>%
model(prophet = prophet(Variable ~ season(period = 12, type = "additive"))) %>%
reconcile(min_trace(prophet),top_down(prophet), bottom_up(prophet)) %>%
forecast(h = 12)
Is this due to the modeling framework in fable or could it be something to do with my data? FWIW, the same issue is occurring with neural network heirarchies in fable.