Other meanings of Autoregressive model
Statistics
An autoregressive model (AR model) is a statistical model for time series analysis that expresses a variable as a linear function of its own past values. It is parameterized by an order p (AR(p)), indicating the number of lagged terms included. The model is widely used for forecasting, signal processing, and econometrics, and forms the foundation of more complex models like ARMA and ARIMA.
An autoregressive model of order p (AR(p)) is defined as Xt = c + φ1Xt−1 + φ2Xt−2 + … + φpXt−p + εt, where c is a constant, φi are coefficients, and εt is white noise.1 The model assumes stationarity, meaning the statistical properties (mean, variance) do not change over time. Stationarity imposes constraints on the φ coefficients: the roots of the characteristic polynomial must lie outside the unit circle.2 The partial autocorrelation function (PACF) is used to identify the appropriate order p: for an AR(p) process, the PACF cuts off after lag p.3
The most common method for estimating AR coefficients is the Yule–Walker estimator, which solves a system of linear equations derived from the sample autocovariance function.4 Alternatively, ordinary least squares (OLS) regression can be applied to the lagged values. Model selection criteria such as the Akaike Information Criterion (AIC) or Bayesian Information Criterion (BIC) balance goodness-of-fit against model complexity, penalizing higher orders to avoid overfitting.1 Residual diagnostics, including tests for autocorrelation (e.g., Ljung–Box test), verify that the residuals resemble white noise. For non-stationary series, differencing is applied before fitting an AR model, leading to the ARIMA framework.
Autoregressive models are used in economics (e.g., GDP growth forecast), climatology (e.g., temperature series), and neuroscience (e.g., EEG analysis).2 Extensions include the vector autoregressive (VAR) model for multiple time series, and the threshold autoregressive (TAR) model that allows regime-switching behavior.5 In modern machine learning, autoregressive neural networks (e.g., WaveNet, Transformer-based language models) adapt the core idea of conditioning on past outputs, though they are not linear.1
The term “autoregressive” was coined by Udny Yule in 1927, who applied the model to study sunspot numbers.5 The Yule–Walker equations were independently derived by George Udny Yule and Gilbert Walker (1910) in the context of atmospheric pressure.4 An edge case: an AR(1) model with coefficient φ=1 (a random walk) is non-stationary, yet it is often used as a starting point for unit root tests. A less known fact: the AR model can be reinterpreted as a linear stochastic difference equation, and its spectral density can be derived from the coefficients, revealing periodicities in the data. In fields like ecology, AR models are used to model population dynamics with lagged density dependence.
The term 'autoregressive' was introduced by Udny Yule in 1927, derived from the concept of regressing a variable on its own lagged values.
Help improve the encyclopedia. Reports go straight to the site manager.