copula {acopula} | R Documentation |
Generic copulae definitions
Description
Produce a list containing CDF and/or PDF of an copula with parameters bounds.
Usage
copula(name,...)
copFGM(...)
copGumbel(...)
copNormal(dim=2,...)
copPlackett(...)
copProduct(...)
Arguments
name |
character. Code name for copula, identical with the part after |
dim |
integer. Copula dimension. |
... |
named arguments. Items of the copula definition list to be redefined. Argument names must NOT be cropped. |
Details
Currently implemented copula families:
family | CDF | ar.range | special cases |
Farlie-Gumbel-Morgenstern | | [-1,1] | 0( ) |
Gumbel-Hougaard | | [1,Inf] | 1( ),Inf(M) |
normal | | ]-1,1[ | -1(W),0( ),1(M) |
Plackett | | [0,Inf] | 0(W),1( ),Inf(M) |
product | | |
|
where is quantile function of standard normal and
is CDF of multivariate normal distribution with correlation matrix
containing copula parameters.
Value
parameters |
numeric vector to be used whenever parameters of copula are not supplied to procedure that use it, or as starting values in estimation. |
pcopula , dcopula |
function of two arguments. The first is vector of copula arguments, the another is vector of parameters. |
rcopula |
function of two arguments. The first is copula dimension or length of random sample (normal copula), the another is vector of parameters. |
kendall , spearman |
list. Correlation coefficient as function of copula parameter ( |
lower , upper |
numeric. Parameters boundary. |
id |
character. Identification of copula family. |
Author(s)
Tomas Bacigal
References
Nelsen, R. B. (2006): An introduction to copulas. Springer.
See Also
Examples
## the following gives the same definition list
copFGM()
copula("FGM")
## any list item can be modified upon function call
copPlackett(parameters=2.2,upper=10)