Introduction
Introduction to Hierarchial Forecasting using HierarchialForecast
You can run these experiments using CPU or GPU with Google Colab.
1. Hierarchical Series
In many applications, a set of time series is hierarchically organized. Examples include the presence of geographic levels, products, or categories that define different types of aggregations.
In such scenarios, forecasters are often required to provide predictions for all disaggregate and aggregate series. A natural desire is for those predictions to be “coherent”, that is, for the bottom series to add up precisely to the forecasts of the aggregated series.
Figure 1. shows a simple hierarchical structure where we have four bottom-level series, two middle-level series, and the top level representing the total aggregation. Its hierarchical aggregations or coherency constraints are:
Luckily these constraints can be compactly expressed with the following matrices:
where aggregates the bottom series to the upper levels, and is an identity matrix. The representation of the hierarchical series is then:
To visualize an example, in Figure 2. One can think of the hierarchical time series structure levels to represent different geographical aggregations. For example, in Figure 2. the top level is the total aggregation of series within a country, the middle level being its states and the bottom level its regions.
2. Hierarchical Forecast
To achieve “coherency”, most statistical solutions to the hierarchical forecasting challenge implement a two-stage reconciliation process.
- First, we obtain a set of the base forecast 2. Later, we reconcile them into coherent forecasts .
Most hierarchical reconciliation methods can be expressed by the following transformations:
The HierarchicalForecast library offers a Python collection of
reconciliation methods, datasets, evaluation and visualization tools for
the task. Among its available reconciliation methods we have
BottomUp
,
TopDown
,
MiddleOut
,
MinTrace
,
ERM
.
Among its probabilistic coherent methods we have
Normality
,
Bootstrap
,
PERMBU
.
3. Minimal Example
Wrangling Data
We are going to creat a synthetic data set to illustrate a hierarchical time series structure like the one in Figure 1.
We will create a two level structure with four bottom series where aggregations of the series are self evident.
ds | top_level | middle_level | bottom_level | y | |
---|---|---|---|---|---|
0 | 2000-01-01 | Australia | State1 | r1 | 10 |
1 | 2000-02-01 | Australia | State1 | r1 | 20 |
8 | 2000-01-01 | Australia | State1 | r2 | 10 |
9 | 2000-02-01 | Australia | State1 | r2 | 20 |
16 | 2000-01-01 | Australia | State2 | r3 | 100 |
17 | 2000-02-01 | Australia | State2 | r3 | 200 |
24 | 2000-01-01 | Australia | State2 | r4 | 100 |
25 | 2000-02-01 | Australia | State2 | r4 | 200 |
The previously introduced hierarchical series
is captured within the Y_hier_df
dataframe.
The aggregation constraints matrix is captured
within the S_df
dataframe.
Finally the tags
contains a list within Y_hier_df
composing each
hierarchical level, for example the tags['top_level']
contains
Australia
’s aggregated series index.
unique_id | ds | y | |
---|---|---|---|
0 | Australia | 2000-01-01 | 220.0 |
1 | Australia | 2000-02-01 | 440.0 |
8 | Australia/State1 | 2000-01-01 | 20.0 |
9 | Australia/State1 | 2000-02-01 | 40.0 |
16 | Australia/State2 | 2000-01-01 | 200.0 |
17 | Australia/State2 | 2000-02-01 | 400.0 |
24 | Australia/State1/r1 | 2000-01-01 | 10.0 |
25 | Australia/State1/r1 | 2000-02-01 | 20.0 |
32 | Australia/State1/r2 | 2000-01-01 | 10.0 |
33 | Australia/State1/r2 | 2000-02-01 | 20.0 |
40 | Australia/State2/r3 | 2000-01-01 | 100.0 |
41 | Australia/State2/r3 | 2000-02-01 | 200.0 |
48 | Australia/State2/r4 | 2000-01-01 | 100.0 |
49 | Australia/State2/r4 | 2000-02-01 | 200.0 |
Australia/State1/r1 | Australia/State1/r2 | Australia/State2/r3 | Australia/State2/r4 | |
---|---|---|---|---|
Australia | 1.0 | 1.0 | 1.0 | 1.0 |
Australia/State1 | 1.0 | 1.0 | 0.0 | 0.0 |
Australia/State2 | 0.0 | 0.0 | 1.0 | 1.0 |
Australia/State1/r1 | 1.0 | 0.0 | 0.0 | 0.0 |
Australia/State1/r2 | 0.0 | 1.0 | 0.0 | 0.0 |
Australia/State2/r3 | 0.0 | 0.0 | 1.0 | 0.0 |
Australia/State2/r4 | 0.0 | 0.0 | 0.0 | 1.0 |
Base Predictions
Next, we compute the base forecast for each time series using the
naive
model. Observe that Y_hat_df
contains the forecasts but they
are not coherent.
Reconciliation
ds | Naive | Naive/BottomUp | |
---|---|---|---|
unique_id | |||
Australia | 2000-06-30 | 880.0 | 880.0 |
Australia | 2000-09-30 | 880.0 | 880.0 |
Australia/State1 | 2000-06-30 | 80.0 | 80.0 |
Australia/State1 | 2000-09-30 | 80.0 | 80.0 |
Australia/State2 | 2000-06-30 | 800.0 | 800.0 |
Australia/State2 | 2000-09-30 | 800.0 | 800.0 |
Australia/State1/r1 | 2000-06-30 | 40.0 | 40.0 |
Australia/State1/r1 | 2000-09-30 | 40.0 | 40.0 |
Australia/State1/r2 | 2000-06-30 | 40.0 | 40.0 |
Australia/State1/r2 | 2000-09-30 | 40.0 | 40.0 |
Australia/State2/r3 | 2000-06-30 | 400.0 | 400.0 |
Australia/State2/r3 | 2000-09-30 | 400.0 | 400.0 |
Australia/State2/r4 | 2000-06-30 | 400.0 | 400.0 |
Australia/State2/r4 | 2000-09-30 | 400.0 | 400.0 |
References
- Hyndman, R.J., & Athanasopoulos, G. (2021). “Forecasting:
principles and practice, 3rd edition: Chapter 11: Forecasting
hierarchical and grouped series.”. OTexts: Melbourne, Australia.
OTexts.com/fpp3 Accessed on July
2022.
- Orcutt, G.H., Watts, H.W., & Edwards, J.B.(1968). Data aggregation
and information loss. The American Economic Review, 58 ,
773(787).
- Disaggregation methods to expedite product line forecasting.
Journal of Forecasting, 9 , 233–254.
doi:10.1002/for.3980090304.
- Wickramasuriya, S. L., Athanasopoulos, G., & Hyndman, R. J. (2019).
“Optimal forecast reconciliation for hierarchical and grouped time
series through trace minimization”. Journal of the American
Statistical Association, 114 , 804–819.
doi:10.1080/01621459.2018.1448825.
- Ben Taieb, S., & Koo, B. (2019). Regularized regression for
hierarchical forecasting without unbiasedness conditions. In
Proceedings of the 25th ACM SIGKDD International Conference on
Knowledge Discovery & Data Mining KDD ’19 (p. 1337(1347). New York,
NY, USA: Association for Computing
Machinery.