I've read the following article: https://trinkerrstuff.wordpress.com/2018/03/15/2246/
Now I'm trying to use the suggested approach with bquote
in my plot. However I can't get it to work. I have the following code
x <- seq(0, 2*pi, 0.01)
y <- sin(x)
y_median <- median(y)
ggplot(mapping = aes(x = x, y = y)) +
geom_line() +
geom_label(aes(label = bquote("median" ~ y==~.y_median), x = 1, y = y_median))
I get the following error:
Error in as.data.frame.default(x[[i]], optional = TRUE) :
cannot coerce class ‘"formula"’ to a data.frame
What am I doing wrong?
ggplot doesn't like to work with expressions for labels in
geom_text
orgeom_label
layers. It likes to work with strings. So instead you can doWe use
deparse()
to turn it into a string, then useparse=TRUE
to have ggplot parse it back into an expression. Also I just usedannotate()
here since you aren't really mapping this value to your data at all.Key points:
1.) I fixed the missing parentheses in
"median" ~ y==~.(y_median)
. This is discussed in?bquote
help page:2.) Put the
bquote
inside a list, becauseaes
expects a vector or a list.3.) Tell
geom_label
to parse the expression by the setting the corresponding parameter to TRUE.