在使用色标绘制光栅时,我有一个问题摆脱框:
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
选项根本不起作用。我在这里错过了什么吗?
答案 0 :(得分:4)
知道了:
plot(raster, ..., bty="n", box=FALSE)
有趣的是,必须设置bty="n"
和box=FALSE
!如果您只尝试其中一个,则会打印该框!