
Last chance! 50% off unlimited learning
Sale ends in
Computes point estimates and d
-dimensional expectile at the extreme level (Expectile Prediction).
predMultiExpectiles(data, tau, tau1, method="LAWS", tailest="Hill", var=FALSE,
varType="asym-Ind-Adj-Log", bias=FALSE, k=NULL, alpha=0.05,
plot=FALSE)
A list with elements:
ExpctHat
: an estimate of the d
-dimensional expecile;
biasTerm
: an estimate of the bias term of yje d
-dimensional expecile;
VarCovEHat
: an estimate of the asymptotic variance-covariance of the d
-dimensional expectile estimator;
EstConReg
: an estimate of the approximate d
-dimensional expecile.
A matrix of
A real in
A real in
A string specifying the method used to estimate the expecile. By default est="LAWS"
specifies the use of the LAWS based estimator. See Details.
A string specifying the tail index estimator. By default tailest="Hill"
specifies the use of Hill estimator. See Details.
If var=TRUE
then an estimate of the asymptotic variance of the expectile estimator is computed.
A string specifying the type of asymptotic variance-covariance matrix to compute. By default varType="asym-Ind-Adj-Log"
specifies that the variance-covariance matrix is computed assuming dependent variables and exploiting the log scale and a suitable adjustment. See Details.
A logical value. By default bias=FALSE
specifies that no bias correction is computed. See Details.
An integer specifying the value of the intermediate sequence
A real in d
-dimensional expecile at the extreme level.
A logical value. By default plot=FALSE
specifies that no graphical representation of the estimates is provided. See Details.
Simone Padoan, simone.padoan@unibocconi.it, http://mypage.unibocconi.it/simonepadoan/; Gilles Stupfler, gilles.stupfler@ensai.fr, http://ensai.fr/en/equipe/stupfler-gilles/
For a dataset data
of d
-dimensional observations and sample size d
-dimensional expectile is computed. The estimation of the d
-dimensional expectile at the extreme level tau1
(d
-dimensional tail index d
-dimensional temporal independent observations coming from dependent variables. See Padoan and Stupfler (2020) for details.
The so-called intermediate level tau
or
The so-called extreme level tau1
or
When method='LAWS'
, then the d
-dimensional expectile is estimated using the LAWS based estimator. When method='QB'
, the expectile is instead estimated using the QB esimtator. The definition of both estimators depend on the estimation of the d
-dimensional tail index d
-dimensional tail index d
-dimensional Hill estimator (tailest='Hill'
), see MultiHTailIndex). This is the only available option so far (soon more results will be available). See Section 2.2 in Padoan and Stupfler (2020) for details.
If var=TRUE
then an estimate of the asymptotic variance-covariance matrix of the d
-dimensional expectile is computed. Notice that the estimation of the asymptotic variance-covariance matrix is only available when varType="asym-Ind-Adj-Log"
. The data can also be regarded as coded-dimensional temporal independent observations coming from independent variables. In this case the asymptotic variance-covariance matrix is diagonal and is also computed exploiting the formulas in Section 3.2 of Padoan and Stupfler (2020). This is achieved through varType="asym-Ind-Log"
. If varType="asym-Ind-Adj"
, then the variance-covariance matrix is computed exploiting the asymptotic behaviour of the relative expectile estimator appropriately normalized and exploiting a suitable adjustment. This concerns the case of dependent variables. The case of independent variables is achieved through varType="asym-Ind"
.
If bias=TRUE
then d
-dimensional
k
or tau=NULL
and method='LAWS'
or method='QB'
, then tailest='Hill'
, for each marginal distributions, then k
Given a small value d
-dimensional expectile, with approximate nominal confidence level varType="asym-Ind-Adj-Log"
, then an "asymmetric" confidence regions is computed exploiting the asymptotic behaviour of the normalized expectile estimator in logarithmic scale and using a suitable adjustment. This choice is recommended. If varType="asym-Ind-Adj"
, then the a "symmetric" confidence regions is computed exploiting the asymptotic behaviour of the relative explectile estimator appropriately normalized.
If plot=TRUE
then a graphical representation of the estimates is not provided.
Padoan A.S. and Stupfler, G. (2020). Joint inference on extreme expectiles for multivariate heavy-tailed distributions. arXiv e-prints arXiv:2007.08944, https://arxiv.org/abs/2007.08944
MultiHTailIndex, estMultiExpectiles, extMultiQuantile
# Extreme expectile estimation at the extreme level tau1 obtained with
# d-dimensional observations simulated from a joint distribution with
# a Gumbel copula and equal Frechet marginal distributions.
library(plot3D)
library(copula)
library(evd)
# distributional setting
copula <- "Gumbel"
dist <- "Frechet"
# parameter setting
dep <- 3
dim <- 3
scale <- rep(1, dim)
shape <- rep(3, dim)
par <- list(dep=dep, scale=scale, shape=shape, dim=dim)
# Intermediate level (or sample tail probability 1-tau)
tau <- 0.95
# Extreme level (or tail probability 1-tau1 of unobserved expectile)
tau1 <- 0.9995
# sample size
ndata <- 1000
# Simulates a sample from a multivariate distribution with equal Frechet
# marginals distributions and a Gumbel copula
data <- rmdata(ndata, dist, copula, par)
scatter3D(data[,1], data[,2], data[,3])
# High d-dimensional expectile (intermediate level) estimation
expectHat <- predMultiExpectiles(data, tau, tau1, var=TRUE)
expectHat$ExpctHat
expectHat$VarCovEHat
# run the following command to see the graphical representation
# \donttest{
expectHat <- predMultiExpectiles(data, tau, tau1, var=TRUE, plot=TRUE)
# }
Run the code above in your browser using DataLab