Learn R Programming

copBasic (version 1.5.1)

duCOP: The Dual of a Copula

Description

Compute the dual of a copula from a copula

$$\mathrm{Pr}[U \le v\mid V \le v] = \tilde{\mathbf{C}}(u,v) = u + v - \mathbf{C}(u,v)$$

The dual of a copula is the expression for the probability that either $U \le u$ or $V \le v$, which is obviously unlike a copula that has $U \le u$ and $V \le v$.

Usage

duCOP(cop=NULL, u, v, ...)

Arguments

cop
A copula function,
u
A nonexceedance probability in X direction,
v
A nonexceedance probability in Y direction, and
...
Additional arguments to pass (such as parameters, if needed, for the copula in the form of a list.

Value

  • The value for the dual of a copula is returned.

References

Nelson, R.B., 2006, An introduction to copulas: New York, Springer, 269 p.

See Also

COP, coCOP, surCOP, W, P, M, PSP

Examples

Run this code
u <- runif(1)
t <- runif(1)
duCOP(cop=W,u,t)
duCOP(cop=P,u,t)
duCOP(cop=M,u,t)
duCOP(cop=PSP,u,t)

Run the code above in your browser using DataLab