我为此数据创建了一个图像图:

sample
         p         p.1         p.2         p.3         p.4
  p    1.0000000  0.24077171 -0.66666667 -0.49009803  0.61237244
  p.1  0.2407717  1.00000000  0.09028939 -0.83444087  0.14744196
  p.2 -0.6666667  0.09028939  1.00000000  0.21004201  0.10206207
  p.3 -0.4900980 -0.83444087  0.21004201  1.00000000 -0.08574929
  p.4  0.6123724  0.14744196  0.10206207 -0.08574929  1.00000000

使用此代码:
  image.plot(sample,col=redblue(191), zlim=c(-1,1))

我得到这张图片:

而不是x和y轴上的0.0 0.2 0.4 ..,我想要p p.1 p.2 ...
我怎么得到那个?
感谢您的时间和考虑?

我的热图看起来像这样:

它不对称。你能解决这个问题吗?
我正在使用此代码:

最佳答案

这是一个更好的解决方案:

 par(mar=c(5,4.5,4,7))
 image(sample, col=rainbow(25), axes=F)  #redblue() doesn't work on my computer.
 axis(2)
 axis(1, at=seq(0,0.8,0.2), labels=rownames(sample))
 image.plot(sample, legend.only=T)

编辑:下面的情节看起来像您想要的吗?
 sample = cor(matrix(rnorm(400), nrow=20))
 image(cor(matrix(rnorm(400), nrow=20)), axes=F)
 mtext(text=c(paste("country",1:21)), side=2, line=0.3, at=seq(0,1,0.05), las=1, cex=0.8)
 mtext(text=c(paste("country",1:21)), side=1, line=0.3, at=seq(0,1,0.05), las=2, cex=0.8)
 image.plot(sample, legend.only=T)

关于image - r-如何在image.plot中的x轴上编辑元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10770550/

10-12 02:46