Python implementation of the Time-Lagged Detrended Cross-Correlation Coefficient Analysis (DCCA)
Project description
Time-Lagged Detrended Cross Correlation Analysis
This package allows to implement Detrended Cross Correlation Analysis [1] and its Time-Lagged version. Implementations are based on [1] and [2].
The code allows to easily calculate the Detrended Cross-Correlation Coefficient, which is a variation of the more famous Pearson's correlation coefficient, meant for cases in which the time series is non stationary. Indeed, in many domains, stationarity of a time series is not guaranteed and running traditional correlation coefficients can give skewed or untrue results.
Usage
The package allows to calculate the detrended version with both no time lag, or with a given time lag.
from dcca import detrended_correlation
from numpy.random import rand
x: ndarray = rand(100)
y: ndarray = rand(100)
print(detrended_correlation(x=x, y=y, time_scale=3, time_lag=0))
-0.04848682827863634
The time_lag
coefficient is meant to confront the time series when one is moved with respect to the other. At the moment, only the time series y
can be moved using this. To run the full cross-correlation analysis, one may want to loop over different time lags:
from dcca import detrended_correlation
from numpy.random import rand
x: ndarray = rand(100)
y: ndarray = rand(100)
time_lags: list[int] = range(0, 10)
dccas = [detrended_correlation(x=x, y=y, time_scale=3, time_lag=0) for time_lag in time_lags]
In the example provided, the coefficient is always going to be the same, since the arrays are randomly sampled.
The time_scale
coefficient specifies the box size of the local detrending. In short, the Detrended Cross-Correlation Coefficient, in order to account for non-stationarity in the two series, calculates the correlation over smaller parts of the series (boxes), whose size is indeed given by the aforementioned parameter. For more detail, please look at the referenced material.
The package also allows to calculate the standard Pearson's correlation coefficient, even with different time lags. While the method can be easily implemented, I though it might be useful to provide it for confronttions.
from dcca.cross_correlation import cross_correlation
from numpy.random import rand
x: ndarray = rand(100)
y: ndarray = rand(100)
print(cross_correlation(x=x, y=y, time_lag=0))
Installation
At the moment, the packe is only installable via pip
. For following releases, I will try to port it into conda
as well.
pip install dcca
References
[1] Podobnik, Boris, and H. Eugene Stanley. "Detrended cross-correlation analysis: a new method for analyzing two nonstationary time series." Physical review letters 100.8 (2008): 084102.
[2] Shen, Chenhua. "Analysis of detrended time-lagged cross-correlation between two nonstationary time series." Physics Letters A 379.7 (2015): 680-687.
Contacts
For any information, contact me, Leonardo Alchieri, at leonardo@alchieri.eu. This package was developed as part of my PhD at USI (Università della Svizzera italiana), Switzerland.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dcca-0.2.1.tar.gz
.
File metadata
- Download URL: dcca-0.2.1.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c160e6d08763f4017955061c71d09280a9aea76a280450d217c3aba30551ab44 |
|
MD5 | 18ed4b66707364533f413d5345942458 |
|
BLAKE2b-256 | 11f567414604ea670136ec15e02872e6b5d054036c00c9167063b0ce0ffe800d |