Learn R Programming

ComplexHeatmap (version 1.10.2)

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

Description

Add row annotations or heatmaps as a heatmap list

Usage

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

Arguments

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)

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

Run the code above in your browser using DataLab