2

在用色标绘制栅格时,我在摆脱盒子时遇到问题:

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选项根本不起作用。我在这里错过了什么吗?

4

1 回答 1

5

知道了:

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

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

于 2013-08-26T08:48:28.367 回答