网格和图像:线条太多了?

时间:2016-02-25 21:36:49

标签: r image plot r-grid

我一起使用imagegrid为14个变量绘制了大约1500行数据。我想做一个网格,其中包含14个变量的垂直线和1500个响应者中的每一个的水平线。

然而,当我这样做时,我得到一个灰色的情节,而不是实际可用的东西。有没有解决方法,或者我只是有太多行?

这是我的代码:

image(1:14, 1:nrow(df), ylab="", xlab="", as.matrix(t(df[,37:50])), 
      col=c("white","darkblue"),xaxt='n')
grid(nx=14, ny=nrow(df), lty=1, lwd=1, col="lightgrey")

这就是它的样子: enter image description here

但我希望它看起来像这样:

enter image description here

但是有大约1500条细长的水平线。

0 个答案:

没有答案