sliouv_m {lcopula} | R Documentation |
Multiple marginal survival function for Liouville vectors
Description
This function is a wrapper around sliouv
; it allows the user to treat all the data matrix simultaneously
by applying different parameters to each margin.
Usage
sliouv_m(x, family, alphavec, theta)
Arguments
x |
sample from copula |
family |
family of the Liouville copula. Either |
alphavec |
vector of Dirichlet allocations (must be a vector of integers) |
theta |
parameter of the corresponding Archimedean copula |
Value
a matrix of same length as x
with the survival probabilities
Examples
x <- rliouv(n = 100, family = "gumbel", alphavec <- c(2,3), theta = 2)
sliouv_m(x, family="gumbel", alphavec=c(2,3), theta=2)
all(sliouv_m(x, family="gumbel", alphavec=c(2,3), theta=2)[,1]-
sliouvm(x[,1], family="gumbel", alpha=2, theta=2)==0)
[Package lcopula version 1.0.7 Index]