Note
Click here to download the full example code
D-Variate Independence Testing¶
Here, we consider joint independence testing of
The hyppo.d_variate
, and
will be explained in detail below. Like all the other tests within hyppo, each
method has a statistic
and test
method. The test
method is
the one that returns the test statistic and p-values, among other outputs, and is
the one that is used most often in the examples, tutorials, etc. The p-value returned
is calculated using a permutation test using hyppo.tools.multi_perm_test
.
Specifics about how the statistic is calculated in hyppo.d_variate
can be
found in the docstring of the test. Here, we give an overview of the hyppo.independence
.
D-variable Hilbert Schmidt Independence Criterion (dHsic)¶
dHsic is an extension of hyppo.independence.Hsic
, and it uses the
reproducing kernel Hilbert space to test for the joint independence of hyppo.d_variate.dHsic
.
Note that unlike hyppo.independence.Hsic
, there is no fast version of
the test. It always uses the permutation method to compute its p-value.
Note
- Pros
Highly accurate independence test for d random variables
Much faster than constructing a joint independence test from multiple pairwise independence tests
- Cons
Is not always more powerful than pairwise Hsic, depends on simulation
and the dependence structure of the variables
dHsic is often computationally less expensive than using pairwise Hsic, and if
dimension
The following is a general use case of dHsic using data points that simulate a
1D linear relationship between random variables hyppo.d_variate.dHsic
.
from hyppo.d_variate import dHsic
from hyppo.tools import linear
x, y = linear(100, 1)
u, v = linear(100, 1)
stat, pvalue = dHsic(gamma=0.5).test(x, y, u, v)
print(stat, pvalue)
Out:
0.047320159540541695 0.000999000999000999
Total running time of the script: ( 0 minutes 1.245 seconds)