Nothing
"EvuCOP" <-
function(u=seq(0.01, 0.99, by=0.01), cop=NULL, para=NULL, asuv=FALSE, nsim=1E5,
subdivisions=100L, rel.tol=.Machine$double.eps^0.25, abs.tol=rel.tol, ...) {
v <- sapply(u, function(t) {
E <- NULL
try(E <- integrate(function(k) { 1 - derCOP( cop=cop, para=para, t, k, ...) },
lower=0, upper=1, subdivisions=subdivisions,
rel.tol=rel.tol, abs.tol=abs.tol)$value, silent=TRUE)
if(is.null(E)) {
E <- mean( 1 - derCOP(cop=cop, para=para, t, runif(nsim), ...) )
names(E) <- "sim"
}
return(E)
})
v[v <= 0] <- 0
v[v >= 1] <- 1
if(asuv) return(data.frame(U=u, V=v))
return(v)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.