Learn R Programming

smoothAPC (version 0.3)

plot.matrix: Presents matrix as a heatmap

Description

Presents matrix as a heatmap

Usage

# S3 method for 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 "default" or "special" or a function accepting one argument and returning a color palette (for example rainbow).

main

Title for the plot.

...

Other parameters. They are currently ignored.

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataLab