当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。