HeatMap {Agi4x44PreProcess}R Documentation

HeatMap

Description

Creates a HeatMap graph using the 'heatmap.2' function

Usage

HeatMap(object, size, maintitle)

Arguments

object A expression Matrix
size number of highest variance genes to be considered in the plot
maintitle title of the plot

Author(s)

Pedro Lopez-Romero

See Also

heatmap.2

Examples

## 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)

[Package Agi4x44PreProcess version 1.2.0 Index]