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


R ggplot2 label_bquote 带有数学表达式的标签


label_bquote() 提供了一种使用绘图数学表达式来标记分面行或列的灵活方法。反引号变量将替换为它们在构面中的值。

用法

label_bquote(rows = NULL, cols = NULL, default)

参数

rows

行的反引号标签表达式。

cols

列的反引号标签表达式。

default

未使用,保留是为了兼容性。

也可以看看

例子

# The variables mentioned in the plotmath expression must be
# backquoted and referred to by their names.
p <- ggplot(mtcars, aes(wt, mpg)) + geom_point()
p + facet_grid(vs ~ ., labeller = label_bquote(alpha ^ .(vs)))

p + facet_grid(. ~ vs, labeller = label_bquote(cols = .(vs) ^ .(vs)))

p + facet_grid(. ~ vs + am, labeller = label_bquote(cols = .(am) ^ .(vs)))

源代码:R/labeller.R

相关用法


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