R - 没有框的情节光栅

时间:2013-08-26 08:22:28

标签: r raster

在使用色标绘制光栅时,我有一个问题摆脱框:

require(raster)
data(volcano)
raster <- raster(volcano)

colfunc <- colorRampPalette(c("blue", "red"))
plot(raster, col = colfunc(40), breaks = seq(minValue(raster), maxValue(raster), length.out = 40), bty = "n", xaxt = "n", yaxt = "n")

bty选项根本不起作用。我在这里错过了什么吗?

1 个答案:

答案 0 :(得分:4)

知道了:

plot(raster, ..., bty="n", box=FALSE)

有趣的是,必须设置bty="n"box=FALSE!如果您只尝试其中一个,则会打印该框!