Learn R Programming

quantable (version 0.3.6)

simpleheatmap: heatmap2 facade

Description

heatmap2 facade

Usage

simpleheatmap(pln, main = "", distf = dist, hclustf = hclust,
  labRow = "", palette = getBlueWhiteRed(), margins = c(5, 5),
  scale = "none", ...)

Arguments

pln

or dataframe with numerical values

main

title

distf

distance function

hclustf

clustering function

labRow

row labels

palette

color palette

margins

control margins of heatmap

scale

c(row, column or none)

...

other parameters to heatmap.2

Examples

Run this code
# NOT RUN {
tmp = matrix(rep((1:100),times = 4) + rnorm(100*4,0,3),ncol=4)
mean = c(20,30,10,40)
sd = c(4,3,4,5)
tmp = sweep(tmp,2,sd,"*")
tmp = sweep(tmp,2,mean,"+")
par(mar=c(5,5,5,5))
simpleheatmap(tmp,ColSideColors=c("red","blue","pink","black"))
simpleheatmap(tmp)
# }

Run the code above in your browser using DataLab