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).