Prerequisites

This tutorial assumes basic familiarity with StatsForecast. For a minimal example visit the Quick Start

Introduction

When we generate a forecast, we usually produce a single value known as the point forecast. This value, however, doesn’t tell us anything about the uncertainty associated with the forecast. To have a measure of this uncertainty, we need prediction intervals.

A prediction interval is a range of values that the forecast can take with a given probability. Hence, a 95% prediction interval should contain a range of values that include the actual future value with probability 95%. Probabilistic forecasting aims to generate the full forecast distribution. Point forecasting, on the other hand, usually returns the mean or the median or said distribution. However, in real-world scenarios, it is better to forecast not only the most probable future outcome, but many alternative outcomes as well.

StatsForecast has many models that can generate point forecasts. It also has probabilistic models than generate the same point forecasts and their prediction intervals. These models are stochastic data generating processes that can produce entire forecast distributions. By the end of this tutorial, you’ll have a good understanding of the probabilistic models available in StatsForecast and will be able to use them to generate point forecasts and prediction intervals. Furthermore, you’ll also learn how to generate plots with the historical data, the point forecasts, and the prediction intervals.

Important

Although the terms are often confused, prediction intervals are not the same as confidence intervals.

Warning

In practice, most prediction intervals are too narrow since models do not account for all sources of uncertainty. A discussion about this can be found here.

Outline:

  1. Install libraries
  2. Load and explore the data
  3. Train models
  4. Plot prediction intervals

Tip

You can use Colab to run this Notebook interactively

Open In Colab

Install libraries

We assume that you have StatsForecast already installed. If not, check this guide for instructions on how to install StatsForecast

Install the necessary packages using pip install statsforecast

pip install statsforecast -U

Load and explore the data

For this example, we’ll use the hourly dataset from the M4 Competition. We first need to download the data from a URL and then load it as a pandas dataframe. Notice that we’ll load the train and the test data separately. We’ll also rename the y column of the test data as y_test.

import pandas as pd 

train = pd.read_csv('https://auto-arima-results.s3.amazonaws.com/M4-Hourly.csv')
test = pd.read_csv('https://auto-arima-results.s3.amazonaws.com/M4-Hourly-test.csv').rename(columns={'y': 'y_test'})
train.head()
unique_iddsy
0H11605.0
1H12586.0
2H13586.0
3H14559.0
4H15511.0
test.head()
unique_iddsy_test
0H1701619.0
1H1702565.0
2H1703532.0
3H1704495.0
4H1705481.0

Since the goal of this notebook is to generate prediction intervals, we’ll only use the first 8 series of the dataset to reduce the total computational time.

n_series = 8 
uids = train['unique_id'].unique()[:n_series] # select first n_series of the dataset
train = train.query('unique_id in @uids')
test = test.query('unique_id in @uids')

We can plot these series using the statsforecast.plot method from the StatsForecast class. This method has multiple parameters, and the required ones to generate the plots in this notebook are explained below.

  • df: A pandas dataframe with columns [unique_id, ds, y].
  • forecasts_df: A pandas dataframe with columns [unique_id, ds] and models.
  • plot_random: bool = True. Plots the time series randomly.
  • models: List[str]. A list with the models we want to plot.
  • level: List[float]. A list with the prediction intervals we want to plot.
  • engine: str = plotly. It can also be matplotlib. plotly generates interactive plots, while matplotlib generates static plots.
from statsforecast import StatsForecast

StatsForecast.plot(train, test, plot_random = False)
/Users/fedex/projects/statsforecast/statsforecast/core.py:21: TqdmExperimentalWarning: Using `tqdm.autonotebook.tqdm` in notebook mode. Use `tqdm.tqdm` instead to force console mode (e.g. in jupyter console)
  from tqdm.autonotebook import tqdm

Train models

StatsForecast can train multiple models on different time series efficiently. Most of these models can generate a probabilistic forecast, which means that they can produce both point forecasts and prediction intervals.

For this example, we’ll use AutoETS and the following baseline models:

To use these models, we first need to import them from statsforecast.models and then we need to instantiate them. Given that we’re working with hourly data, we need to set seasonal_length=24 in the models that requiere this parameter.

from statsforecast.models import (
    AutoETS, 
    HistoricAverage, 
    Naive, 
    RandomWalkWithDrift, 
    SeasonalNaive
)

# Create a list of models and instantiation parameters 
models = [
    AutoETS(season_length=24),
    HistoricAverage(), 
    Naive(), 
    RandomWalkWithDrift(), 
    SeasonalNaive(season_length=24)
]

To instantiate a new StatsForecast object, we need the following parameters:

  • df: The dataframe with the training data.
  • models: The list of models defined in the previous step.
  • freq: A string indicating the frequency of the data. See pandas’ available frequencies.
  • n_jobs: An integer that indicates the number of jobs used in parallel processing. Use -1 to select all cores.
sf = StatsForecast(
    df=train, 
    models=models, 
    freq='H', 
    n_jobs=-1
)

Now we’re ready to generate the point forecasts and the prediction intervals. To do this, we’ll use the forecast method, which takes two arguments:

  • h: An integer that represent the forecasting horizon. In this case, we’ll forecast the next 48 hours.
  • level: A list of floats with the confidence levels of the prediction intervals. For example, level=[95] means that the range of values should include the actual future value with probability 95%.
levels = [80, 90, 95, 99] # confidence levels of the prediction intervals 

forecasts = sf.forecast(h=48, level=levels)
forecasts = forecasts.reset_index()
forecasts.head()
unique_iddsAutoETSAutoETS-lo-99AutoETS-lo-95AutoETS-lo-90AutoETS-lo-80AutoETS-hi-80AutoETS-hi-90AutoETS-hi-95RWD-hi-99SeasonalNaiveSeasonalNaive-lo-80SeasonalNaive-lo-90SeasonalNaive-lo-95SeasonalNaive-lo-99SeasonalNaive-hi-80SeasonalNaive-hi-90SeasonalNaive-hi-95SeasonalNaive-hi-99
0H1701631.889587533.371826556.926819568.978882582.874084680.905090694.800354706.852356789.416626691.0582.823792552.157349525.558777473.573395799.176208829.842651856.441223908.426575
1H1702559.750854460.738586484.411835496.524353510.489288609.012329622.977295635.089844833.254150618.0509.823822479.157379452.558807400.573395726.176208756.842651783.441223835.426575
2H1703519.235474419.731232443.522095455.694794469.729156568.741821582.776123594.948853866.990601563.0454.823822424.157379397.558807345.573395671.176208701.842651728.441223780.426575
3H1704486.973358386.979523410.887451423.120056437.223480536.723267550.826660563.059265895.510132529.0420.823822390.157379363.558807311.573395637.176208667.842651694.441223746.426575
4H1705464.697357364.216339388.240753400.532959414.705078514.689636528.861755541.153992920.702881504.0395.823822365.157379338.558807286.573395612.176208642.842651669.441223721.426575

We’ll now merge the forecasts and their prediction intervals with the test set. This will allow us generate the plots of each probabilistic model.

test = test.merge(forecasts, how='left', on=['unique_id', 'ds'])

Plot prediction intervals

To plot the point and the prediction intervals, we’ll use the statsforecast.plot method again. Notice that now we also need to specify the model and the levels that we want to plot.

AutoETS

sf.plot(train, test, plot_random = False, models=['AutoETS'], level=levels)

Historic Average

sf.plot(train, test, plot_random = False, models=['HistoricAverage'], level=levels)

Naive

sf.plot(train, test, plot_random = False, models=['Naive'], level=levels)

Random Walk with Drift

sf.plot(train, test, plot_random = False, models=['RWD'], level=levels)

Seasonal Naive

sf.plot(train, test, plot_random = False, models=['SeasonalNaive'], level=levels)

From these plots, we can conclude that the uncertainty around each forecast varies according to the model that is being used. For the same time series, one model can predict a wider range of possible future values than others.

References

Rob J. Hyndman and George Athanasopoulos (2018). “Forecasting principles and practice, The Statistical Forecasting Perspective”.