prob,cyl_copula-method {cylcop} | R Documentation |
cyl_copula
' CopulaThis is a method corresponding to the generic prob()
in the
'copula' package.
## S4 method for signature 'cyl_copula'
prob(x, l, u)
x |
R object of class ' |
l |
numeric vector of length 2 holding the coordinates of the
lower left corner in |
u |
numeric vector of length 2 holding the coordinates of the
upper right corner in |
A numeric in [0,1]
, the probability that a draw from the
2-dimensional copula x
falls in the rectangle defined by l
and
u
.
copula::prob
cop <- cyl_quadsec(0.1)
prob(cop, l = c(0.1, 0.3), u = c(0.3, 0.9))