fbvall(x, ..., nsloc1 = NULL, nsloc2 = NULL, which = NULL,
boxcon = TRUE, std.err = TRUE, orderby = c("AIC", "BIC", "SC"),
control = list(maxit = 250))
shape1 = 0
and shape2 = 0
).x
, to be passed to the individual fitting
functions, for linear modelling of the location parameter on the
first/second margin.
The data frames are treated as covariate matrices (eTRUE
(the default), the
L-BFGS-B
optimization method is used, which includes box
constraints. If FALSE
the BFGS
method is used.
The BFGS
method is faster, and should TRUE
(the default), the ``standard
errors'' are returned. A logical vector can also be given. This
should be the same length as the number of models being fitted.optim
. Only options
which are independent of the number of parameters within the
optimization should be given. Some options are related to the
optimization method used. This is def"bvall"
. The generic accessor functions fitted
(or
fitted.values
), std.errors
and
deviance
extract various features of the returned
object. Each can be passed the argument which
to restrict
access to a particular subset of models. This should be a character
vector containing character strings representing particular models,
as described in which
.
An object of class "bvall"
is a list containing
the following components
x
.x
.Any bivariate extreme value distribution can be written as $$G(z_1,z_2) = \exp\left[-(y_1+y_2)A\left( \frac{y_1}{y_1+y_2}\right)\right]$$ for some function $A(\cdot)$ defined on $[0,1]$, where $$y_i = {1+s_i(z_i-a_i)/b_i}^{-1/s_i}$$ for $1+s_i(z_i-a_i)/b_i > 0$ and $i = 1,2$, with the marginal parameters given by $(a_i,b_i,s_i)$, $b_i > 0$.
$A(\cdot)$ is called (by some authors) the dependence function. It follows that $A(0)=A(1)=1$, and that $A(\cdot)$ is a convex function with $\max(x,1-x) \leq A(x)\leq 1$ for all $0\leq x\leq1$. $A(\cdot)$ does not depend on the marginal parameters.
For each fitted model there are three summaries of the dependence
structure in the returned object, based on $A(\cdot)$.
Two are measures of dependence.
The first is given by $2(1-A(1/2))$.
The second is the integral of $4(1 - A(x))$, taken over
$0\leq x\leq1$.
These appear in the rows labelled by dep
and intdep
respectively.
Both measures are zero at independence and one at complete dependence.
The final row, labelled intasy
, contains
a measure of asymmetry given by the integral of
$4(A(x) - A(1-x))/(3 - 2\sqrt2)$,
taken over $0 \leq x \leq 0.5$.
This integral lies in the closed interval [-1,1] (conjecture), with
larger absolute values representing stronger asymmetry.
As a rough guide, any value within the interval $(-0.2,0.2)$
suggests that the dependence structure is close to symmetric.
For the symmetric models $A(x) = A(1-x)$ for all
$0 \leq x \leq 0.5$, so the integral will be zero.
fbvlog
, optim
data(sealevel)
fbvall(sealevel)
fbvall(sealevel, nsloc1 = (-40:40)/100)
Run the code above in your browser using DataLab