computeCBMeasure {RDM}R Documentation

Dependence measures for the checkerboard copula

Description

Computes \mu(C^{\#}(A)) for some underlying measure for the checkerboard copula C^{\#}(A). This measure depends only on the input matrix A.

Usage

computeCBMeasure(A, method = c("spearman", "kendall", "bkr", "dss", "zeta1"))

Arguments

A

A (possibly non-square) checkerboard mass density.

method

Determines the underlying dependence measure. Options include "spearman", "kendall", "bkr", "dss", "chatterjee" and "zeta1".

Details

This function computes \mu(C^{\#}(A)) for one of several underlying measures for a given checkerboard copula C^{\#}(A). Most importantly, the value only depends on the (possibly non-square) matrix A and implicitly assumes the form of C^{\#}(A) given in Strothmann, Dette and Siburg (2022) <arXiv:2201.03329>. Currently, the following underlying measures are implemented:

Value

The value of \mu(C^{\#}(A)). For a sorted A, this corresponds to the rearranged dependence measure R_{\mu}(C^{\#}(A)).

Examples

n <- 10
A <- diag(n)/n
computeCBMeasure(A, method="spearman")

[Package RDM version 0.1.1 Index]