Description Usage Arguments Details Value Author(s) See Also Examples
Decorate Heatmap Bodies
1 2 3 | decorate_heatmap_body(heatmap, code,
slice = 1, row_slice = slice, column_slice = 1,
envir = new.env(parent = parent.frame()))
|
heatmap |
Name of the heatmap which is set as |
code |
Code that adds graphics in the selected heatmap body. |
slice |
Index of the row slice in the heatmap. |
row_slice |
Index of the row slice in the heatmap. |
column_slice |
Index of the column slice in the heatmap. |
envir |
Where to look for variables inside |
There is a viewport for each slice in each heatmap.
This function contructs the name of the viewport,
goes to the viewport by seekViewport, runs the code
to that viewport and finally goes back to the original viewport.
This function returns no value.
Zuguang Gu <z.gu@dkfz.de>
https://jokergoo.github.io/ComplexHeatmap-reference/book/heatmap-decoration.html
1 2 3 4 5 | set.seed(123)
Heatmap(matrix(rnorm(100), 10), name = "mat")
decorate_heatmap_body("mat", {
grid.circle(gp = gpar(fill = "#FF000080"))
})
|
Loading required package: grid
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.