R&#34中的热图;我如何减小字母的大小?"

时间:2016-03-04 17:06:28

标签: r heatmap

我在R中制作了我的第一张热图,但我需要减小图表字母的大小,因为它看起来非常混乱。

enter image description here

我不知道如何减小Y(轴向)字母的大小。我用来制作热图的最终代码:

characlist <- list(list(c(1, 2, 3, 4)), c(1, 3, 2, NA))
str(characlist)
heatmap(as.matrix(Mydata),
        scale = "column",
        col = heat.colors(2),
        main = "Title",
        Rowv = NA,
        Colv = NA)

1 个答案:

答案 0 :(得分:3)

您可以使用cexRowcexCol作为heatmap()

的参数