Attach heatmap annotations to the heatmap
Attach heatmap annotations to the heatmap
## S4 method for signature 'Heatmap' attach_annotation(object, ha, side = c("top", "bottom", "left", "right"), gap = unit(1, "points"))
object |
A |
ha |
A |
side |
Which side of the heatmap. Value should be in "top", "bottom", "left", "right". |
gap |
Space between the two heatmap annotations. |
m = matrix(rnorm(100), 10) ht = Heatmap(m) ha = HeatmapAnnotation(foo = 1:10) ht = attach_annotation(ht, ha) ht ha2 = HeatmapAnnotation(bar = letters[1:10]) ht = attach_annotation(ht, ha2) ht
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.