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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。