I there!
I want to include a label with subscript in geom_bracket
in ggplot2
. I tried in different ways, but no one worked (attempts in the comments):
library(ggplot2)
ggplot(data = mtcars, aes(x = vs, y = disp)) +
geom_point() +
geom_bracket(xmin = .25, xmax = .75, y.position = 250
,label = paste0("p_b<", format(0.06, nsmall = 3))
# ,label = paste0(expression(p[b]), "<", format(0.06, nsmall = 3))
# ,label = TeX(paste0("p_b<", format(0.06, nsmall = 3)))
)
What I got:
Subscript does not work.
Thanks
geom_bracket()
(which is fromggpubr
notggplot2
) uses an argument to specify whether the label is an expression or text, so you can do: