ComplexHeatmap (version 1.10.2)

add_heatmap-Heatmap-method: Add heatmaps or row annotations as a heatmap list

Description

Add heatmaps or row annotations as a heatmap list

Usage

## S3 method for class 'Heatmap':
add_heatmap(object, x)

Arguments

object
a Heatmap-class object.

Value

Details

There is a shortcut function +.AdditiveUnit.

Examples

Run this code
mat = matrix(rnorm(80, 2), 8, 10)
mat = rbind(mat, matrix(rnorm(40, -2), 4, 10))
rownames(mat) = letters[1:12]
colnames(mat) = letters[1:10]

ht = Heatmap(mat)
add_heatmap(ht, ht)

ha = HeatmapAnnotation(points = anno_points(1:12, which = "row"), 
    which = "row")
add_heatmap(ht, ha)

Run the code above in your browser using DataCamp Workspace