mvevd {evd} | R Documentation |
Parametric Multivariate Extreme Value Distributions
Description
Density function, distribution function and random generation for the multivariate logistic and multivariate asymmetric logistic models.
Usage
pmvevd(q, dep, asy, model = c("log", "alog"), d = 2, mar = c(0,1,0),
lower.tail = TRUE)
rmvevd(n, dep, asy, model = c("log", "alog"), d = 2, mar = c(0,1,0))
dmvevd(x, dep, asy, model = c("log", "alog"), d = 2, mar = c(0,1,0),
log = FALSE)
Arguments
x , q |
A vector of length |
n |
Number of observations. |
dep |
The dependence parameter(s). For the logistic model,
should be a single value. For the asymmetric logistic model,
should be a vector of length |
asy |
The asymmetry parameters for the asymmetric logistic
model. Should be a list with |
model |
The specified model; a character string. Must be either
|
d |
The dimension. |
mar |
A vector of length three containing marginal parameters
for every univariate margin, or a matrix with three columns where
each column represents a vector of values to be passed to the
corresponding marginal parameter. It can also be a list with
|
log |
Logical; if |
lower.tail |
Logical; if |
Details
Define
for and
, where the marginal
parameters are given by
,
.
If
then
is defined by
continuity.
Let
.
In each of the multivariate distributions functions
given below, the
univariate margins are generalized extreme value, so that
for
.
If
for some
, the value
is
either greater than the upper end point (if
),
or less than the lower end point (if
), of the
th univariate marginal distribution.
model = "log"
(Gumbel, 1960)
The d
dimensional multivariate logistic distribution
function with parameter is
where .
This is a special case of the multivariate asymmetric logistic
model.
model = "alog"
(Tawn, 1990)
Let be the set of all non-empty subsets of
, let
, where
denotes the number of elements in the set
, and let
.
The
d
dimensional multivariate asymmetric logistic distribution
function is
where the dependence parameters for
all
, and the asymmetry parameters
for all
and
.
The constraints
for
ensure that the marginal distributions are generalized extreme value.
Further constraints arise from the possible redundancy of asymmetry
parameters in the expansion of the distribution form.
Let
.
If
for some
then
for all
.
Furthermore, if for some
,
for all
, then
.
dep
should be a vector of length which contains
, with
the order defined by the natural set ordering on the index.
For example, for the trivariate model,
.
asy
should be a list with elements.
Each element is a vector which corresponds to a set
, containing
for
every integer
.
The elements should be given using the natural set ordering on the
, so that the first
elements are vectors
of length one corresponding to the sets
, and the last element is a
a vector of length
, corresponding to the set
.
asy
must be constructed to ensure that all constraints are
satisfied or an error will occur.
Value
pmvevd
gives the distribution function, dmvevd
gives
the density function and rmvevd
generates random deviates, for
the multivariate logistic or multivariate asymmetric logistic model.
Note
Multivariate extensions of other bivariate models are more complex. A multivariate extension of the Husler-Reiss model exists, involving a multidimensional integral and one parameter for each bivariate margin. Multivariate extensions for the negative logistic model can be derived but are considerably more complex and appear to be less flexible. The “multivariate negative logistic model” often presented in the literature (e.g. Kotz et al, 2000) is not a valid distribution function and should not be used.
The logistic and asymmetric logistic models respectively are simulated using Algorithms 2.1 and 2.2 in Stephenson(2003b).
The density function of the logistic model is evaluated using the representation of Shi(1995). The density function of the asymmetric logistic model is evaluated using the representation given in Stephenson(2003a).
References
Gumbel, E. J. (1960) Distributions des valeurs extremes en plusieurs dimensions. Publ. Inst. Statist. Univ. Paris, 9, 171–173.
Kotz, S. and Balakrishnan, N. and Johnson, N. L. (2000) Continuous Multivariate Distributions, vol. 1. New York: John Wiley & Sons, 2nd edn.
Shi, D. (1995) Fisher information for a multivariate extreme value distribution. Biometrika, 82(3), 644–649.
Stephenson, A. G. (2003a) Extreme Value Distributions and their Application. Ph.D. Thesis, Lancaster University, Lancaster, UK.
Stephenson, A. G. (2003b) Simulating multivariate extreme value distributions of logistic type. Extremes, 6(1), 49–60.
Tawn, J. A. (1990) Modelling multivariate extreme value distributions. Biometrika, 77, 245–253.
See Also
Examples
pmvevd(matrix(rep(0:4,5), ncol=5), dep = .7, model = "log", d = 5)
pmvevd(rep(4,5), dep = .7, model = "log", d = 5)
rmvevd(10, dep = .7, model = "log", d = 5)
dmvevd(rep(-1,20), dep = .7, model = "log", d = 20, log = TRUE)
asy <- list(.4, .1, .6, c(.3,.2), c(.1,.1), c(.4,.1), c(.2,.3,.2))
pmvevd(rep(2,3), dep = c(.6,.5,.8,.3), asy = asy, model = "alog", d = 3)
asy <- list(.4, .0, .6, c(.3,.2), c(.1,.1), c(.4,.1), c(.2,.4,.2))
rmvevd(10, dep = c(.6,.5,.8,.3), asy = asy, model = "alog", d = 3)
dmvevd(rep(0,3), dep = c(.6,.5,.8,.3), asy = asy, model = "alog", d = 3)
asy <- list(0, 0, 0, 0, c(0,0), c(0,0), c(0,0), c(0,0), c(0,0), c(0,0),
c(.2,.1,.2), c(.1,.1,.2), c(.3,.4,.1), c(.2,.2,.2), c(.4,.6,.2,.5))
rmvevd(10, dep = .7, asy = asy, model = "alog", d = 4)
rmvevd(10, dep = c(rep(1,6), rep(.7,5)), asy = asy, model = "alog", d = 4)