Description Usage Arguments Details Value Author(s) See Also Examples
Display two-dimensional visualizations (image maps) of the correlation matrices within and between two data sets.
1 2 3 4 |
X |
numeric matrix or data frame (n x p), the observations
on the X variables. |
Y |
numeric matrix or data frame (n x q), the observations
on the Y variables. |
type |
character string, (partially) maching one of |
X.var.names, Y.var.names |
logical, should the name of X- and/or
Y-variables be shown? If |
sideColors |
character vector of length two. The color name for horizontal and vertical side bars that may be used to annotate the X and Y correlation matrices. |
interactive.dev |
boolean. The current graphics device that will be opened is interactive? |
title |
logical, should the main titles be shown? |
color, xlab, ylab |
arguments passed to |
row.cex, col.cex |
positive numbers, used as |
symkey |
boolean indicating whether the color key should be made
symmetric about 0. Defaults to |
keysize |
positive numeric value indicating the size of the color key. |
margins |
numeric vector of length two containing the margins (see
|
lhei, lwid |
arguments passed to |
If type="combine"
, the correlation matrix is computed of the combined
matrices cbind(X, Y)
and then plotted. If type="separate"
,
three correlation matrices are computed, cor(X)
, cor(Y)
and
cor(X,Y)
and plotted separately on a device. In both cases, a color
correlation scales strip is plotted.
The correlation matrices are pre-processed before calling the image
function in order to get, as in the numerical representation, the diagonal
from upper-left corner to bottom-right one.
Missing values are handled by casewise deletion in the imgCor
function.
If X.names = FALSE
, the name of each X-variable is hidden. Default
value is TRUE
.
If Y.names = FALSE
, the name of each Y-variable is hidden. Default
value is TRUE
.
none
Ignacio González.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.