Learn R Programming

satdad (version 1.1)

tsic: Tail superset importance coefficients for Mevlog models.

Description

Tail superset importance coefficients for Mevlog models. A Mevlog model is a multivariate extreme value (symmetric or asymmetric) logistic model.

Usage

tsic(ds, ind = 2, n.MC = 1000, sobol = FALSE, norm = FALSE)

Value

The function returns a list of two elements

  • subsets A list of subsets from \(\{1,...,d\}\).

    When ind is given as an integer, subsets is the list of subsets from \(\{1,...,d\}\) with cardinality ind.

    When ind is a list, it corresponds to subsets.

    When ind = "with.singletons" subsets is the list of all non empty subsets in \(\{1,...,d\}\).

    When ind = "all" subsets is the list of all subsets in \(\{1,...,d\}\) with cardinality larger or equal to 2.

  • tsic A vector of tail superset importance coefficients associated with the list subsets. When norm = TRUE, then tsic are normalized in the sense that the original values are divided by corresponding upper bounds.

Arguments

ds

An object of class ds.

ind

A character string among "with.singletons" and "all" (without singletons), or an integer in \(\{2,...,d\}\) or a list of subsets from \(\{1,...,d\}\). The default is ind = 2, all pairwise coefficients are computed.

n.MC

Monte Carlo sample size. Default value is 1000. See Details.

sobol

A boolean. `FALSE` (the default). If `TRUE`: the index is normalized by the theoretical global variance.

norm

A boolean. `FALSE` (the default): original tsic is computed. `TRUE`: tsic is normalized by its upper bound.

Author

Cécile Mercadier (mercadier@math.univ-lyon1.fr)

Details

The tail dependence structure is specified using a ds object, which corresponds to the stable tail dependence function \(\ell\). The process for deducing the stable tail dependence function \(\ell\) from ds is explained in the Details section of gen.ds.

A tail superset importance coefficient (tsic) is a measure of the importance of a subset of components (and their supersets) in contributing to the global variance decomposition of \(\ell\). The tsic is computed using Monte Carlo methods based on the integral formula (3) in Mercadier and Roustant (2019). Recall that Formula (9) in Liu and Owen (2006) provides an integral representation of the superset importance coefficient.

The tail dependograph is plotted using pairwise tsic values, which are computed using the function tsic and the ind = 2 option.

The upper bound for a tsic associated with subset \(I\) is given by Theorem 2 in Mercadier and Ressel (2021). If \(|I|\) is the cardinality of subset \(I\), then the upper bound is \(2 (|I| !)^2\)/\(((2|I|+2)!)\).

The tail dependence structure is set by a ds object. It thus corresponds to the stable tail dependence function \(\ell\).

References

Liu, R. and Owen, A. B. (2006) Estimating mean dimensionality of analysis of variance decompositions. J. Amer. Statist. Assoc., 101(474):712--721.

Mercadier, C. and Ressel, P. (2021) Hoeffding–Sobol decomposition of homogeneous co-survival functions: from Choquet representation to extreme value theory application. Dependence Modeling, 9(1), 179--198.

Mercadier, C. and Roustant, O. (2019) The tail dependograph. Extremes, 22, 343--372.

Smith, R. L. (1990) Max-stable processes and spatial extremes. Dept. of Math., Univ. of Surrey, Guildford GU2 5XH, England.

Tiago de Oliveira, J. (1962/63) Structure theory of bivariate extremes, extensions. Estudos de Matematica, Estatistica, e Economicos, 7:165--195.

See Also

graphs, ellMevlog

Examples

Run this code

## Fix a 5-dimensional asymmetric tail dependence structure
ds5 <- gen.ds(d = 5)

## Compute pairwise tsic
tsic(ds = ds5, ind = 2)

## Plot the tail dependograph
graphs(ds = ds5)

## Compute tsic on two specific subsets
tsic(ds = ds5, ind = list(1:4, 3:5))

## Compute normalized version of tsic
tsic(ds5,  ind = list(1:4, 3:5), norm = TRUE)

## Compute Sobol and normalized version of tsic
tsic(ds5,  ind = list(1:4, 3:5), norm = TRUE, sobol = TRUE)

Run the code above in your browser using DataLab