The method uses the pseudo-polar transformation for suitable norms, transforming
the data to pseudo-observations, than marginally to unit Frechet or unit Pareto.
Empirical or Euclidean weights are computed and returned alongside with the angular and
radial sample for values above threshold(s) thresh, specified in terms of quantiles
of the radial component R or marginal quantiles. Only complete tuples are kept.
Arguments
- xdat
- an - nby- dsample matrix
- thresh
- threshold of length 1 for - 'sum', or- dmarginal thresholds otherwise.
- Rnorm
- character string indicating the norm for the radial component. 
- Anorm
- character string indicating the norm for the angular component. - arctanis only implemented for \(d=2\)
- marg
- character string indicating choice of marginal transformation, either to Frechet or Pareto scale 
- wgt
- character string indicating weighting function for the equation. Can be based on Euclidean or empirical likelihood for the mean 
- region
- character string specifying which observations to consider (and weight). - 'sum'corresponds to a radial threshold \(\sum x_i > \)- thresh,- 'min'to \(\min x_i >\)- threshand- 'max'to \(\max x_i >\)- thresh.
- is.angle
- logical indicating whether observations are already angle with respect to - region. Default to- FALSE.
- ...
- additional arguments 
Value
a list with arguments ang for the \(d-1\) pseudo-angular sample, rad with the radial component
and possibly wts if Rnorm='l1' and the empirical likelihood algorithm converged. The Euclidean algorithm always returns weights even if some of these are negative.
a list with components
- angmatrix of pseudo-angular observations
- radvector of radial contributions
- wtsempirical or Euclidean likelihood weights for angular observations
Details
The empirical likelihood weighted mean problem is implemented for all thresholds,
 while the Euclidean likelihood is only supported for diagonal thresholds specified
 via region=sum.
References
Einmahl, J.H.J. and J. Segers (2009). Maximum empirical likelihood estimation of the spectral measure of an extreme-value distribution, Annals of Statistics, 37(5B), 2953–2989.
de Carvalho, M. and B. Oumow and J. Segers and M. Warchol (2013). A Euclidean likelihood estimator for bivariate tail dependence, Comm. Statist. Theory Methods, 42(7), 1176–1192.
Owen, A.B. (2001). Empirical Likelihood, CRC Press, 304p.
Examples
x <- rmev(n = 25, d = 3, param = 0.5, model = 'log')
wts <- angmeas(xdat = x, Rnorm = 'l1', Anorm = 'l1', marg = 'frechet', wgt = 'empirical')
wts2 <- angmeas(xdat = x, Rnorm = 'l2', Anorm = 'l2', marg = 'pareto')