pingouin.distance_corr#

pingouin.distance_corr(x, y, alternative='greater', n_boot=1000, seed=None)[source]#

Distance correlation between two arrays.

Statistical significance (p-value) is evaluated with a permutation test.

Parameters:
x, yarray_like

1D or 2D input arrays, shape (n_samples, n_features). x and y must have the same number of samples and must not contain missing values.

alternativestr

Alternative of the test. Can be either “two-sided”, “greater” (default) or “less”. To be consistent with the original R implementation, the default is to calculate the one-sided “greater” p-value.

n_bootint or None

Number of bootstrap to perform. If None, no bootstrapping is performed and the function only returns the distance correlation (no p-value). Default is 1000 (thus giving a precision of 0.001).

seedint or None

Random state seed.

Returns:
dcorfloat

Sample distance correlation (range from 0 to 1).

pvalfloat

P-value.

Notes

From Wikipedia:

Distance correlation is a measure of dependence between two paired random vectors of arbitrary, not necessarily equal, dimension. The distance correlation coefficient is zero if and only if the random vectors are independent. Thus, distance correlation measures both linear and nonlinear association between two random variables or random vectors. This is in contrast to Pearson’s correlation, which can only detect linear association between two random variables.

The distance correlation of two random variables is obtained by dividing their distance covariance by the product of their distance standard deviations:

\[\text{dCor}(X, Y) = \frac{\text{dCov}(X, Y)} {\sqrt{\text{dVar}(X) \cdot \text{dVar}(Y)}}\]

where \(\text{dCov}(X, Y)\) is the square root of the arithmetic average of the product of the double-centered pairwise Euclidean distance matrices.

Note that by contrast to Pearson’s correlation, the distance correlation cannot be negative, i.e \(0 \leq \text{dCor} \leq 1\).

Results have been tested against the energy R package.

References

Examples

  1. With two 1D vectors

>>> from pingouin import distance_corr
>>> a = [1, 2, 3, 4, 5]
>>> b = [1, 2, 9, 4, 4]
>>> dcor, pval = distance_corr(a, b, seed=9)
>>> print(round(dcor, 3), pval)
0.763 0.312
  1. With two 2D arrays and no p-value

>>> import numpy as np
>>> np.random.seed(123)
>>> from pingouin import distance_corr
>>> a = np.random.random((10, 10))
>>> b = np.random.random((10, 10))
>>> round(distance_corr(a, b, n_boot=None), 3)
0.88