R:如何根据到值1的距离定义image.plot中的色阶

时间:2019-03-27 14:43:35

标签: r image plot

我正在基于成对变量之间的相互关系绘制图。相互关系大约为1时将是一个值得研究的问题。

R:image.plot中的色标基于值的顺序。

  cols = rev(brewer.pal(11,'Spectral'))
  rf <- colorRampPalette(cols)   # make colors
  r <- rf(20)

  image.plot(1:nrow(joint_number), 1:ncol(joint_number), 
             (joint_number), 
             axes = FALSE, col = r)

enter image description here

如何根据距1的距离进行色标调整,即距1越近,颜色越亮?

0 个答案:

没有答案