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


R ggplot2 annotate 創建注釋層


此函數將幾何圖形添加到繪圖中,但與典型的幾何函數不同,幾何圖形的屬性不是從數據幀的變量映射,而是作為向量傳入。這對於添加小注釋(例如文本標簽)或如果您的數據位於向量中並且由於某種原因不想將它們放入 DataFrame 中非常有用。

用法

annotate(
  geom,
  x = NULL,
  y = NULL,
  xmin = NULL,
  xmax = NULL,
  ymin = NULL,
  ymax = NULL,
  xend = NULL,
  yend = NULL,
  ...,
  na.rm = FALSE
)

參數

geom

用於注釋的幾何名稱

x, y, xmin, ymin, xmax, ymax, xend, yend

定位美學 - 您必須至少指定其中一項。

...

其他參數傳遞給 layer() 。這些通常是美學,用於將美學設置為固定值,例如 colour = "red"size = 3 。它們也可能是配對的 geom/stat 的參數。

na.rm

如果 FALSE ,則默認缺失值將被刪除並帶有警告。如果 TRUE ,缺失值將被靜默刪除。

細節

請注意,所有位置美學都是按比例縮放的(即它們將擴大繪圖的限製,以便它們可見),但所有其他美學均已設置。這意味著使用此函數創建的圖層永遠不會影響圖例。

不支持的幾何圖形

由於其特殊性質,參考線幾何圖形 geom_abline()geom_hline()geom_vline() 不能與 annotate() 一起使用。您可以使用這些 geoms 目錄進行注釋。

例子

p <- ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()
p + annotate("text", x = 4, y = 25, label = "Some text")

p + annotate("text", x = 2:5, y = 25, label = "Some text")

p + annotate("rect", xmin = 3, xmax = 4.2, ymin = 12, ymax = 21,
  alpha = .2)

p + annotate("segment", x = 2.5, xend = 4, y = 15, yend = 25,
  colour = "blue")

p + annotate("pointrange", x = 3.5, y = 20, ymin = 12, ymax = 28,
  colour = "red", size = 2.5, linewidth = 1.5)


p + annotate("text", x = 2:3, y = 20:21, label = c("my label", "label 2"))


p + annotate("text", x = 4, y = 25, label = "italic(R) ^ 2 == 0.75",
  parse = TRUE)

p + annotate("text", x = 4, y = 25,
  label = "paste(italic(R) ^ 2, \" = .75\")", parse = TRUE)

源代碼:R/annotation.R

相關用法


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