📜  r heatmap - R 编程语言代码示例

📅  最后修改于: 2022-03-11 14:52:01.153000             🧑  作者: Mango

代码示例1
library(ComplexHeatmap)
Heatmap(df, 
        name = "mtcars", #title of legend
        column_title = "Variables", row_title = "Samples",
        row_names_gp = gpar(fontsize = 7) # Text size for row names
        )