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


R ggplot2 annotation_raster 注釋:高性能矩形平鋪


這是 geom_raster() 的特殊版本,針對每個麵板中相同的靜態注釋進行了優化。這些注釋不會影響比例(即 x 和 y 軸不會增長到覆蓋柵格的範圍,並且柵格必須已經有自己的顏色)。這對於添加位圖圖像很有用。

用法

annotation_raster(raster, xmin, xmax, ymin, ymax, interpolate = FALSE)

參數

raster

要顯示的光柵對象,可以是 arraynativeRaster

xmin, xmax

x 位置(在數據坐標中)給出柵格的水平位置

ymin, ymax

y 位置(在數據坐標中)給出柵格的垂直位置

interpolate

如果TRUE 線性插值,如果FALSE(默認)不插值。

例子

# Generate data
rainbow <- matrix(hcl(seq(0, 360, length.out = 50 * 50), 80, 70), nrow = 50)
ggplot(mtcars, aes(mpg, wt)) +
  geom_point() +
  annotation_raster(rainbow, 15, 20, 3, 4)

# To fill up whole plot
ggplot(mtcars, aes(mpg, wt)) +
  annotation_raster(rainbow, -Inf, Inf, -Inf, Inf) +
  geom_point()


rainbow2 <- matrix(hcl(seq(0, 360, length.out = 10), 80, 70), nrow = 1)
ggplot(mtcars, aes(mpg, wt)) +
  annotation_raster(rainbow2, -Inf, Inf, -Inf, Inf) +
  geom_point()

rainbow2 <- matrix(hcl(seq(0, 360, length.out = 10), 80, 70), nrow = 1)
ggplot(mtcars, aes(mpg, wt)) +
  annotation_raster(rainbow2, -Inf, Inf, -Inf, Inf, interpolate = TRUE) +
  geom_point()

相關用法


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