edxu96 / elec_consumption

Clustering and regression for household power consumption profiles
https://edxu96.github.io/elec_consumption
GNU General Public License v3.0
2 stars 0 forks source link

Grouped time series #128

Open edxu96 opened 3 years ago

edxu96 commented 3 years ago

The idea is to group products and stores into similar product and regions, for which aggregate forecasts are generated and used to determine overall seasonality and trend, which are then spread down reconciled using a Top-Down approach with the baseline forecasts generated for each individual sku/store combination.

Our method is based on independently forecasting all series at all levels of the hierarchy and then using a regression model to optimally combine and reconcile these forecasts. [hyndman2011optimal]


edxu96 commented 3 years ago

Bottom-Up Approach

An advantage of this approach is that we are forecasting at the bottom-level of a structure, and therefore no information is lost due to aggregation. On the other hand, bottom-level data can be quite noisy and more challenging to model and forecast. [FPP3]

edxu96 commented 3 years ago

Top-Down Approach

Top-down approaches involve first generating forecasts for the Total series, and then disaggregating these down the hierarchy. This only works with strictly hierarchical data, not with grouped or mixed aggregation structures. [FPP3]