Key Takeaways
- The autocorrelation function (ACF) measures the linear relationship between lagged values in a time series, with significance tested using Bartlett's formula where the standard error for lag k is approximately 1/sqrt(n) for large n, as detailed in Box-Jenkins methodology.
- Stationarity in time series requires constant mean, variance, and autocovariance, tested via Augmented Dickey-Fuller (ADF) test with null hypothesis of unit root, rejecting if test statistic < critical value at 5% level (e.g., -2.89 for n=100).
- Differencing a non-stationary series d times transforms it to stationarity, where d is determined by the number of unit roots, typically 0-2 for most economic series.
- SARIMA(p,d,q)(P,D,Q)s extends ARIMA with seasonal AR/MA, differencing Δ^D_s y_t at period s.
- ETS(A,N,N) is simple exponential smoothing, forecast ŷ_{t+h|t} = l_t, error variance σ²_h = σ² (1 + sum α^{2j}).
- Prophet model decomposes as g(t) + s(t) + h(t) + ε_t, with logistic growth g(t)= (C(t)/(1+exp(-(t-m)/δ))) and Fourier seasonal.
- In finance, EGARCH asymmetry captures leverage effect, negative returns increase vol 1.5x positive.
- MASE normalizes MAE by in-sample naive forecast, scale-independent, M3 median 0.92 for winners.
- sMAPE = (1/n) sum |f-a| / (|f|+|a|)/2 *200%, symmetric, less biased than MAPE for zeros.
- In M3 forecasting competition (2000), Theta method won 21/24 monthly series categories with average sMAPE 10.52%.
- In M4 competition (2018), hybrid statistical/ML models like ES-RNN won overall with 9.4% MASE improvement over benchmarks.
- ARIMA used in 85% of corporate forecasting per Hyndman survey, but ML hybrids reduce error by 15-20% in retail sales.
- In Python statsmodels, ARIMA forecast CI ±1.96 σ_h /sqrt(n) asymptotic normal.
- R forecast package by Hyndman auto.arima selects p,d,q via stepwise AICc, 10^6 models/sec T=1000.
- Python Prophet pip install prophet, fit(model.add_regressor('holiday'), changepoint_prior_scale=0.05).
From ACF and ADF stationarity checks to SARIMA and Prophet, modern tools deliver faster, more accurate forecasts.
Related reading
01 · Category
Fundamentals30 stats
Fundamentals Interpretation
02 · Category
Key Models24 stats
Key Models Interpretation
03 · Category
Performance Metrics24 stats
Performance Metrics Interpretation
More related reading
04 · Category
Real World Applications25 stats
Real World Applications Interpretation
05 · Category
Tools21 stats
Tools Interpretation
06 · Category
Trends21 stats
Trends Interpretation
Cite This Report
This report is designed to be cited. We maintain stable URLs and versioned verification dates. Copy the format appropriate for your publication below.
Nathan Caldwell. (2026, February 13). Time Series Analysis Statistics. Gitnux. https://gitnux.org/time-series-analysis-statistics
Nathan Caldwell. "Time Series Analysis Statistics." Gitnux, 13 Feb 2026, https://gitnux.org/time-series-analysis-statistics.
Nathan Caldwell. 2026. "Time Series Analysis Statistics." Gitnux. https://gitnux.org/time-series-analysis-statistics.
Sources & references
51 datasets cited across this report · attribution is report-level

