⏱️ Time Series
Modelling and forecasting data that arrives in order
0.5.dev0+git.20260808.d6e9440 - August 08, 2026 18:54 UTC

Time Series#

A time series is a sequence of observations indexed by time, where order and dependence carry information. This hub walks the classical Box–Jenkins path the source corpus follows — from stationarity and autocorrelation, through the AR / MA / ARMA / ARIMA / SARIMA model family, to estimation, diagnostics and forecasting — as an ordered, self-contained course of 18 lessons.

Read it at any depth:

  • newcomers — what makes time-series data special, and stationarity;

  • practitioners — reading the ACF / PACF and fitting ARIMA in statsmodels;

  • researchers — estimation (Yule–Walker, Gaussian MLE), order selection and residual diagnostics.

Warning

Time series breaks the i.i.d. assumption behind ordinary cross-validation. Never shuffle: validate forward in time (walk-forward) so the future never leaks into the past.

Note

Follow the lessons in order with Next ▶, or jump in by stage below. Snippets use real statsmodels / pandas / numpy calls. This course pairs with the Terminology reference (Signal Processing & Time Series).


🧭 Stage 1 — Orientation · 2 lessons#

What time-series data is, why order carries information, and setting up the tools. · beginner

📐 Stage 2 — Stationarity · 2 lessons#

The property that makes a series learnable — how to recognise it and how to achieve it. · beginner

🔗 Stage 3 — Linear & ARMA Processes · 4 lessons#

The building blocks: linear processes, the AR / MA / ARMA family, and their autocorrelation. · intermediate

🎯 Stage 4 — Prediction & the Sample ACF / PACF · 2 lessons#

Optimal linear forecasting and the empirical correlation tools used to identify model order. · intermediate

🧮 Stage 5 — Estimation · 2 lessons#

Fitting parameters: Yule–Walker for AR models, Gaussian maximum likelihood for ARMA. · advanced

🏗️ Stage 6 — Building & Forecasting Models · 6 lessons#

Diagnostics, order selection, ARIMA / SARIMA, multi-step forecasting and exponential smoothing. · advanced

🔤 Every lesson, A–Z index#

🔠 Open the full alphabetical index#

Tags: purpose: reference topic: time series