Learn R Programming

cascsim (version 0.4)

setDimension<-: Set the dimension of the copula.

Description

Set the dimension of the copula.

Usage

setDimension(this, ...) <- value

# S4 method for CopulaObj,numeric setDimension(this) <- value

Arguments

this

Copula Object

...

Additional function arguments

value

The dimension of the copula. It can also be set by providing marginal distributions

Examples

Run this code
# NOT RUN {
library(cascsim)
dist1<-new("Pareto",p1=20,p2=3)
dist2<-new("Normal",p1=5,p2=3,min=0,max=20,truncated=TRUE)
cop <- new("CopulaObj", param=c(0.5),marginal=list(dist1=dist1,dist2=dist2),dimension=2)
dist3<-new("Pareto",p1=10,p2=3)
setDimension(cop) <- 3
setMarginal(cop) <- list(dist1=dist1,dist2=dist2,dist3=dist3)
# }

Run the code above in your browser using DataLab