Heatmap3D {ComplexHeatmap} | R Documentation |
3D Heatmap
Heatmap3D(matrix, ..., bar_rel_width = 0.6, bar_rel_height = 0.6, bar_max_length = unit(1, "cm"), bar_angle = 60, row_names_side = "left", show_row_dend = FALSE, show_column_dend = FALSE)
matrix |
The input matrix. Values should be non-negative. |
... |
All pass to |
bar_rel_width |
A factor between 0 and 1. |
bar_rel_height |
A factor between 0 and 1. |
bar_max_length |
Maximal length of bars. Value should be in absolute unit. |
bar_angle |
Angle for the projection. |
row_names_side |
Row names are by default put on the left side of the heatmap. |
show_row_dend |
By default the dendrogram is not drawn. |
show_column_dend |
By default the dendrogram is not drawn. |
For large matrices, the plotting might be slow.
m = matrix(sample(100, 36), 6) Heatmap3D(m)