2014-02-07 65 views

回答

0

您可以使用imagetext

tmp <- matrix(rnorm(100),10,10) 
tmp <-dist(tmp) 
image((as.matrix(tmp))) 
text(0:9/9, 0:9/9, 0:9) 

enter image description here

爲了更好地控制你應該使用 heatmap.2gplots包:

library(gplots) 
tmp <- matrix(rnorm(100),10,10) 
tmp <-dist(tmp) 
heatmap.2((as.matrix(tmp)),dendrogram = "none", 
      cellnote=round(as.matrix(tmp),2),notecol='black') 

enter image description here

+1

謝謝!這正是我所期待的。 –