HeatMap {Agi4x44PreProcess} | R Documentation |
Creates a HeatMap graph using the 'heatmap.2' function
HeatMap(object, size, maintitle)
object |
A expression Matrix |
size |
number of highest variance genes to be considered in the plot |
maintitle |
title of the plot |
Pedro Lopez-Romero
heatmap.2
## Not run: data(dd) selSNR=which(dd$genes$ControlType==0) dd.aux=dd[selSNR,] index=which(duplicated(dd.aux$genes$ProbeName)==FALSE) dd.aux=dd.aux[index,] maintitle="100 High Var" HeatMap(dd.aux$G,100,maintitle) ## End(Not run)