Autocorrelation

MoneyBestPal Team
A statistical concept that measures the degree of similarity between a given time series and a lagged version of itself over successive time intervals
Image: Moneybestpal.com

Autocorrelation is a statistical concept that measures the degree of similarity between a given time series and a lagged version of itself over successive time intervals. It is sometimes referred to as lagged correlation or serial correlation. Data such as stock prices, weather, or economic indicators can be utilized to study patterns and trends using autocorrelation.


What is Autocorrelation?

Autocorrelation is a mathematical representation of the relationship between a variable's current value and its past values. For instance, if it's warm today, there's a higher chance that it'll be warm tomorrow as well. The opposite is true if it's cold today. This illustrates that the temperature today and tomorrow have a positive autocorrelation.

The amount of time intervals between the present value and the past value, or "lags," allows for various calculations of autocorrelation. For instance, an autocorrelation of lag 1 measures the relationship between the present value and the value from one period ago, an autocorrelation of lag 2 measures the relationship between the present value and the value from two periods ago, and so on.

Autocorrelation ranges between -1 and +1. An autocorrelation of +1 denotes a perfect positive correlation, which means that an increase in the present value is always accompanied by an increase in the past value. An autocorrelation of -1 denotes a perfect negative correlation, which means that an increase in the present value is always accompanied by a reduction in the past value. There is no correlation, or autocorrelation of 0, which means that there is no linear link between the present value and the past value.

How to Calculate Autocorrelation?

Depending on whether the data is discrete or continuous, stationary or non-stationary, and deterministic or stochastic, there are various ways to determine autocorrelation. Here, we'll concentrate on one of the most popular approaches, which is based on the Pearson correlation coefficient.

The Pearson correlation coefficient measures the linear relationship between two variables, X and Y, by dividing their covariance by their standard deviations:


r(X,Y) = cov(X,Y) / (std(X) * std(Y))


where cov(X,Y) is the covariance of X and Y, std(X) is the standard deviation of X, and std(Y) is the standard deviation of Y.

To calculate the autocorrelation of a time series X at lag k, we can apply the Pearson correlation coefficient formula to X and its lagged version X_k:


r_k = cov(X,X_k) / (std(X) * std(X_k))


where X_k is the time series X shifted by k periods.

As an alternative, we can compute autocorrelation using built-in methods in Python libraries like NumPy or pandas. The function np.corrcoef(), for instance, in NumPy returns a matrix of correlation coefficients for two or more variables. The pd.Series.autocorr() function from Pandas returns the autocorrelation of a Series object at a specified latency.

How to Test for Autocorrelation?

To test whether a time series exhibits significant autocorrelation or not, we can use various statistical tests, such as:
  • The Durbin-Watson test: With the use of this test, you may determine whether a regression model's lag 1 autocorrelation is significantly positive or negative. The test statistic spans from 0 to 4; values close to 0 indicate positive autocorrelation, values close to 4 indicate negative autocorrelation and values close to 2 suggest no autocorrelation. The test contrasts the test statistic with two crucial values based on sample size and significance level. We reject the null hypothesis of no autocorrelation if the test statistic is either higher or lower than the lower critical value.
  • The Ljung-Box test: Using a time series, this test determines whether there is considerable autocorrelation at any certain latency. The test statistic has a chi-square distribution with degrees of freedom equal to the number of lags examined and is based on the sum of squared autocorrelations at various lags. A critical value from the chi-square distribution at a specific significance level is used to compare the test statistic. We reject the null hypothesis of no autocorrelation if the test statistic exceeds the crucial value.
  • The Breusch-Godfrey test: This test determines whether there is considerable autocorrelation in a regression model at any given lag. The test statistic has degrees of freedom equal to the number of lags tested and is based on the residual sum of squares from a regression of the residuals from the original model on the lagged residuals. At a predetermined level of significance, the test compares the test statistic to a crucial value from the chi-square distribution. We reject the null hypothesis that there is no autocorrelation if the test statistic is higher than the crucial threshold.

The built-in functions of Python libraries like statsmodels and Scipy can be used to run these tests. For instance, the functions sm.stats.durbin_watson(), sm.stats.acorr_ljungbox(), and sm.stats.diagnostic.acorr_breusch_godfrey() of statsmodels offer the test statistics and p-values for the respective Durbin-Watson, Ljung-Box, and Breusch-Godfrey tests. The function scipy.stats.chi2.ppf() in Scipy returns the crucial value for a given significance level and degrees of freedom in the chi-square distribution.

Examples of Autocorrelation

Autocorrelation can be found in many real-world phenomena, such as:
  • Stock prices: Positive autocorrelation describes the tendency of stock prices to move in the same direction as their prior values. This is so that they can keep up with market trends and momentum and their propensity to respond slowly to fresh information.
  • Weather: Weather variables like temperature, humidity, and precipitation frequently show positive autocorrelation, which means that they frequently resemble past values. This is true because weather patterns are affected by seasonal cycles and gradually altering atmospheric conditions.
  • Economic indicators: Economic indicators like GDP, inflation, and unemployment frequently show positive autocorrelation, which means that their past values frequently influence them. This is because long-term variables like population increase, technological advancement, or fiscal policy, which vary gradually over time, have an impact on economic activity.


Implications of Autocorrelation

Autocorrelation can have important implications for time series analysis and forecasting, such as:
  • In a time series, autocorrelation can reveal trends, cycles, or seasonality. Using techniques like exponential smoothing, ARIMA, or SARIMA, these patterns can be used to model and predict the future values of the time series.
  • A regression model's premise of independence may be broken by autocorrelation. As well as inaccurate inference using standard errors and p-values, this might result in biased and ineffective estimations of the regression coefficients. We can adjust autocorrelation in the regression model using techniques like generalized least squares, Cochrane-Orcutt, or Newey-West to handle this problem.
  • Machine learning techniques for time series forecasting can suffer from autocorrelation's negative effects. Certain algorithms, such as linear regression or neural networks, might not be able to recognize the autocorrelation structure of the time series and end up producing forecasts that are inaccurate. The autocorrelation structure of the time series may be overfitted by other methods, like random forests or support vector machines, leading to poor generalization. The machine learning algorithms for time series forecasting can be enhanced using techniques like feature engineering, cross-validation, or regularization to overcome this problem.

Conclusion

Time series data analysis and comprehension benefit from understanding the idea of autocorrelation. It gauges the relationship between a variable's present value and its previous values over various time periods. It may show the existence of trends and patterns in a time series that can be forecasted. Regression models and machine learning techniques for time series forecasting may potentially suffer as a result.
Tags