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


R ggplot2 get_alt_text 从绘图中提取替代文本


该函数返回一个文本,可以在网页等中用作alt-text。目前它将使用alt标签,添加+ labs(alt = <...>),或者返回一个空字符串,但将来它可能会尝试生成一个来自绘图中存储的信息的替代文本。

用法

get_alt_text(p, ...)

参数

p

一个 ggplot 对象

...

目前被忽略

文本字符串

例子

p <- ggplot(mpg, aes(displ, hwy)) +
  geom_point()

# Returns an empty string
get_alt_text(p)
#> [1] ""

# A user provided alt text
p <- p + labs(
  alt = paste("A scatterplot showing the negative correlation between engine",
              "displacement as a function of highway miles per gallon")
)

get_alt_text(p)
#> [1] "A scatterplot showing the negative correlation between engine displacement as a function of highway miles per gallon"

源代码:R/labels.R

相关用法


注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Extract alt text from a plot。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。