plot.assoc {plot.matrix} | R Documentation |
plot.assoc
Description
Visualizes a association matrix with a colored or gray heatmap. As a rule of thumb the breaks are determined
by the effect sizes given by
Cohen (c(-1, -0.4, -0.2, -0.05, 0, +0.05, +0.2, +0.4, +1)
.
You may need to modify mar
with the par
command from its default
c(5.1,4.1,4.1,2.1)
.
See
-
vignette('plot.matrix')
for detailed examples, and -
plot.matrix
for further parameters.
Usage
## S3 method for class 'assoc'
plot(x, reorder = TRUE, gray = FALSE, grey = FALSE, ...)
Arguments
x |
matrix: association within [0,+1] |
reorder |
logical: if the rows (variables) of the loading matrix should be reordered (default: |
gray |
logical: should be a gray scale color palette used or not (default: |
grey |
logical: should be a gray scale color palette used or not (default: |
... |
further parameter given to the |
Details
If either the parameter grey
or gray
is TRUE
then a gray color palette is used.
Value
a plot
Examples
par(mar=c(5.1, 4.1, 4.1, 4.1))
# association matrix
data(Titanic.cramer)
plot(as.assoc(Titanic.cramer))
plot(as.assoc(Titanic.cramer), gray=TRUE)
plot(as.assoc(Titanic.cramer[,1:3]), reorder=FALSE)