pairs2 {copula} | R Documentation |
A version of graphics' package pairs()
,
particularly useful for visualizing dependence in multivariate
(copula) data.
pairs2(x, labels = NULL, labels.null.lab = "U", ...)
x |
a numeric |
labels |
the variable names, typically unspecified. |
labels.null.lab |
the |
... |
further arguments, passed to |
splom2()
for a similar function based on
splom()
.
## Create a 100 x 7 matrix of random variates from a t distribution ## with four degrees of freedom and plot the generated data U <- matrix(rt(700, df = 4), ncol = 7) pairs2(U, pch = ".")