我正在使用heatmap.2处理热图,并且想知道是否仍然可以在所有热图位置上显示值。例如,对于表示“1”和等级的区域,我想显示值“43”,对于“2”,我希望显示值51,依此类推。

我的样本数据如下:

            rating complaints privileges learning raises critical advance
      1      43         51         30       39     61       92      45
      2      63         64         51       54     63       73      47
      3      71         70         68       69     76       86      48
      4      61         63         45       47     54       84      35

最佳答案

你是这个意思吗?通过提供数据对象作为cellnote参数,这些值将打印在热图中。

heatmap.2(data,           # cell labeling
          cellnote=data,
          notecex=1.0,
          notecol="cyan",
          na.color=par("bg"))

关于r - 在R中的热图上显示值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21386921/

10-12 17:11