测量绘图的“墨水”

时间:2014-01-12 10:27:33

标签: r image plot visualization gimp

我正在阅读Tufte的data-ink ratio,我想知道是否可以测量情节使用的“墨水量”?

如果在R中不可能使用其他工具,如GIMP或imagemagick?

1 个答案:

答案 0 :(得分:6)

我建议使用grid.cap()将图形设备的内容转换为栅格,之后计算非白色像素(也就是“墨水”)的比例是一件简单的事情。在下面的示例中,为了将计算重点放在绘图区域中的墨迹上,我设置了par(mar=c(0,0,0,0)),但如果您还要检查轴,刻度,轴标签中的墨水量,则可以删除该行,标题等。

library(grid)

## Plot to R's default graphical device
opar <- par(mar=c(0,0,0,0))
plot(rnorm(1e4), rnorm(1e4), pch=16) 

## Capture contents of the graphics device as a raster (bitmap) image
p <- grid.cap()

## Compute the proportion of pixels that are not white (i.e. are inked in)
sum(p!="white")/length(p)
# [1] 0.2414888

## Restore pre-existing graphical parameters
par(opar)