Nothing
## lower resolution - less size (default dpi = 72): knitr::opts_chunk$set(dpi = 48) ```r require(copula) source(system.file("Rsource", "AC-Liouville.R", package="copula")) set.seed(271)
n <- 1000 theta <- 0.59 d <- 3 U <- rACsimplex(n, d=d, theta=theta, Rdist="Gamma") cor(U, method="kendall")
par(pty="s") pairs(U, gap=0, pch=".") # or cex=0.5
See McNeil, Neslehova (2010, Figure 3)
n <- 2000 theta <- 0.6 alpha <- c(1, 5, 20) U <- rLiouville(n, alpha=alpha, theta=theta, Rdist="Gamma") cor(U, method="kendall")
par(pty="s") pairs(U, gap=0, pch=".") # or cex=0.5
See McNeil, Neslehova (2010, Figure 4)
n <- 1000 theta <- 0.59 alpha <- c(1, 3, 4) U <- rACLiouville(n, alpha=alpha, theta=theta, family="Clayton") cor(U, method="kendall")
par(pty="s") pairs(U, gap=0, pch=".") # or cex=0.5
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.