plot.matrix {smoothAPC} | R Documentation |
Presents matrix as a heatmap
Description
Presents matrix as a heatmap
Usage
## S3 method for class 'matrix'
plot(x, labs = c("X", "Y"), color.palette = c("default",
"special"), main = "", ...)
Arguments
x |
Matrix to plot. |
labs |
Vector of labels for X and Y axes. |
color.palette |
Character string |
main |
Title for the plot. |
... |
Other parameters. They are currently ignored. |
Author(s)
Alexander Dokumentov
Examples
plot(matrix(rnorm(100),10,10), main = "Noise")
plot(matrix(1:100,10,10), c("Dimension 1", "Dimension 2"), main = "Value")
library(demography)
m <- log(fr.mort$rate$female[1:30, 150:160])
plot(m)
plot(m, color.palette = "special")
plot(m, color.palette = rainbow)
[Package smoothAPC version 0.3 Index]