當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R plot.raster 繪製光柵圖像


R語言 plot.raster 位於 graphics 包(package)。

說明

此函數實現了光柵圖像的 plot 方法。

用法

## S3 method for class 'raster'
plot(x, y,
     xlim = c(0, ncol(x)), ylim = c(0, nrow(x)),
     xaxs = "i", yaxs = "i",
     asp = 1, add = FALSE, ...)

參數

x, y

光柵。 y 將被忽略。

xlim, ylim

繪圖區域的限製(默認為柵格尺寸)。

xaxs, yaxs

軸間隔計算樣式(默認表示柵格填充繪圖區域)。

asp

縱橫比(默認保留光柵的縱橫比)。

add

邏輯指示是否簡單地將柵格添加到現有繪圖中。

...

rasterImage 函數的更多參數。

例子

require(grDevices)
r <- as.raster(c(0.5, 1, 0.5))
plot(r)
# additional arguments to rasterImage()
plot(r, interpolate=FALSE)
# distort
plot(r, asp=NA)
# fill page
op <- par(mar=rep(0, 4))
plot(r, asp=NA)
par(op)
# normal annotations work
plot(r, asp=NA)
box()
title(main="This is my raster")
# add to existing plot
plot(1)
plot(r, add=TRUE)

也可以看看

plot.defaultrasterImage

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Plotting Raster Images。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。