Introduction to hierarchical time series forecasting — part II

By Medium - 2021-03-14

Description

In the first part of this article, I provided an introduction to hierarchical time series forecasting, described different types of hierarchical structures, and went over the most popular approaches…

Summary

  • Example in Python using scikit-hts In the first part of this article, I provided an introduction to hierarchical time series forecasting, described different types of hierarchical structures, and went over the most popular approaches to forecasting such time series.
  • Image by the author Alternatively, we can use the HierarchyTree class to represent the underlying structure of our series.
  • That is why I present simplified examples, in which I use the entire data set for training and then forecast 4 steps (a year) into the future.
  • Example of one of the lowest level series using the OLS approach.

 

Topics

  1. Backend (0.14)
  2. Machine_Learning (0.11)
  3. Database (0.07)

Similar Articles

Facebook’s Prophet + Deep Learning = NeuralProphet

By Medium - 2020-12-10

While learning about time series forecasting, sooner or later you will encounter the vastly popular Prophet model, developed by Facebook. It gained lots of popularity due to the fact that it provides…

Creating synthetic time series data

By Medium - 2021-02-22

We synthetic versions of a time-series dataset, visualize and analyze the results, and discuss several use cases for synthetic time series data.