這是 geom_raster()
的特殊版本,針對每個麵板中相同的靜態注釋進行了優化。這些注釋不會影響比例(即 x 和 y 軸不會增長到覆蓋柵格的範圍,並且柵格必須已經有自己的顏色)。這對於添加位圖圖像很有用。
參數
- raster
-
要顯示的光柵對象,可以是
array
或nativeRaster
- 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()
相關用法
- R ggplot2 annotation_logticks 注釋:記錄刻度線
- R ggplot2 annotation_custom 注釋:自定義grob
- R ggplot2 annotation_map 注釋:Map
- R ggplot2 annotate 創建注釋層
- R ggplot2 aes_eval 控製審美評價
- R ggplot2 aes 構建美學映射
- R ggplot2 as_labeller 強製貼標機函數
- R ggplot2 vars 引用分麵變量
- R ggplot2 position_stack 將重疊的對象堆疊在一起
- R ggplot2 geom_qq 分位數-分位數圖
- R ggplot2 geom_spoke 由位置、方向和距離參數化的線段
- R ggplot2 geom_quantile 分位數回歸
- R ggplot2 geom_text 文本
- R ggplot2 get_alt_text 從繪圖中提取替代文本
- R ggplot2 geom_ribbon 函數區和麵積圖
- R ggplot2 stat_ellipse 計算法行數據橢圓
- R ggplot2 resolution 計算數值向量的“分辨率”
- R ggplot2 geom_boxplot 盒須圖(Tukey 風格)
- R ggplot2 lims 設置規模限製
- R ggplot2 geom_hex 二維箱計數的六邊形熱圖
- R ggplot2 scale_gradient 漸變色階
- R ggplot2 scale_shape 形狀比例,又稱字形
- R ggplot2 geom_bar 條形圖
- R ggplot2 draw_key 圖例的關鍵字形
- R ggplot2 label_bquote 帶有數學表達式的標簽
注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Annotation: high-performance rectangular tiling。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。