dCov {GiniDistance} | R Documentation |
Distance Covariance Statistic
Description
Computes distance covariance statistic, in which Xs are quantitative and Y are categorical and return the measures of dependence.
Usage
dCov(x, y, alpha)
Arguments
x |
data |
y |
label of data or response variable |
alpha |
exponent on Euclidean distance, in (0,2] |
Details
dCov
calls dcov
function from energy package to compute distance covariance statistic.
The sample size (number of rows) of the data must agree with the length of the label vector, and samples must not contain missing values. Arguments
x
, y
are treated as data and labels.
The distance covariance (Sezekley07) is extended from Euclidean space to general metric spaces by Lyons (2013). Based on that idea, we define the discrete metric
where is the indicator function. Equipped with this set difference metric on the support of
and Euclidean
distance on the support of
, the corresponding distance covariance and distance correlation for numerical
and categorical
variables are as follows.
Let be a symmetric,
, centered distance matrix of sample
. The
-th entry of
is
if
and 0 if
,
where
,
,
, and
. Similarly, using the set difference metric, a symmetric,
, centered distance matrix is calculated for samples
and denoted by
. Unbiased estimators of
is
.
Value
dCov
returns the sample distance covariance between data x
and label y
.
References
Lyons, R. (2013). Distance covariance in metric spaces. The Annals of Probability, 41 (5), 3284-3305.
Rizzo, M.L. and Szekely, G.J., (2017). Energy: E-Statistics: Multivariate Inference via the Energy of Data (R Package), Version 1.7-0.
Szekely, G. J., Rizzo, M. L. and Bakirov, N. (2007). Measuring and testing dependence by correlation of distances. Annals of Statistics, 35 (6), 2769-2794.
See Also
Examples
x <- iris[,1:4]
y <- unclass(iris[,5])
dCov(x, y, alpha = 1)