vffrank: Frank Copula Variable Given Second One and Copula Probability

Description Usage Arguments Details Value Author(s) Examples

View source: R/vfcfg.R

Description

v for Frank copula C(u, v) given probability C(u, v) and u.

Usage

1
vffrank(C, u, tht)

Arguments

C

Probability value of the Frank copula. It can be a vector.

u

The first variable value of the C(u, v). u can be a vector if C is a single. u is a matrix with nrow = length(C) if C is a vector.

tht

Copula parameter

Details

The value of the u must be grater than C.

Value

The value of the second variable depending on the first variable and copula probability value.

Author(s)

Josef Brejcha

Examples

1
2
3
4
5
6
C <- 0.3
tht <- 6
u <- c(0.35, 0.4, 0.45)
v <- vffrank(C, u, tht)
kop = frankCopula(tht)
pCopula(cbind(u, v), kop)

vfcp documentation built on May 2, 2019, 2:52 p.m.