pCopula-methods: Copula cdf

Description Usage Arguments Value Functions Examples

Description

This function returns the value of the copula itself on given points.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
pCopula(u, copula, ...)

## S4 method for signature 'matrix,ConvexCombCopula'
pCopula(u, copula)

## S4 method for signature 'matrix,Cort'
pCopula(u, copula)

## S4 method for signature 'matrix,CortForest'
pCopula(u, copula)

## S4 method for signature 'matrix,cbCopula'
pCopula(u, copula)

## S4 method for signature 'matrix,cbkmCopula'
pCopula(u, copula)

Arguments

u

numeric matrix : one row per observation

copula

the copula object

...

other parameter to be passed to methods for this generic.

Value

The value of the copula on each observation

Functions

Examples

1
2
3
4
cop <- cbCopula(cort::recoveryourself_data,m = 5)
pCopula(rep(0,2),cop) == 0
pCopula(rep(0.5,2),cop)
pCopula(rep(1,2),cop) == 1

cort documentation built on Jan. 13, 2021, 8:57 p.m.