How to use subscripts in ggplot2 legends [R]
Asked Answered
J

2

30

Can I use subscripts in ggplot2 legends? I see this question on greek letters in legends and elsewhere, but I can't figure out how to adapt it.

I thought that using expression(), which works in axis labels, would do the trick. But my attempt below fails. Thanks!

library(ggplot2)
temp <- data.frame(a = rep(1:4, each = 100), b = rnorm(4 * 100), c = 1 + rnorm(4 * 100))
names(temp)[2:3] <- c("expression(b[1])", "expression(c[1])")
temp.m <- melt(temp, id.vars = "a")
ggplot(temp.m, aes(x = value, linetype = variable)) + geom_density() + facet_wrap(~ a)
Judoka answered 1/6, 2011 at 14:18 Comment(1)
"expression(b[1])" will be treated as character, not an expression.Stalinist
S
30

The following should work (remove your line with names(temp) <-...):

ggplot(temp.m, aes(x = value, linetype = variable)) + 
  geom_density() + facet_wrap(~ a) +    
  scale_linetype_discrete(breaks=levels(temp.m$variable),
                          labels=c(expression(b[1]), expression(c[1])))

See help(scale_linetype_discrete) for available customization (e.g. legend title via name=).

Stalinist answered 1/6, 2011 at 14:31 Comment(0)
F
14

If you want to incorporate Greek symbols etc. into the major tick labels, use an unevaluated expression.

For a bar graph, i did the following:

library(ggplot2)
data <- data.frame(names=tolower(LETTERS[1:4]),mean_p=runif(4))

p <- ggplot(data,aes(x=names,y=mean_p))
p <- p + geom_bar(colour="black",fill="white")
p <- p + xlab("expressions") + scale_y_continuous(expression(paste("Wacky Data")))
p <- p + scale_x_discrete(labels=c(a=expression(paste(Delta^2)),
                               b=expression(paste(q^n)),
                               c=expression(log(z)),
                               d=expression(paste(omega / (x + 13)^2))))
p

barplot with greek letters and superscripts

Fiftieth answered 27/3, 2012 at 18:5 Comment(2)
Error: stat_count() can only have an x or y aesthetic.Disaster
Interestingly, this question is about subscripts, but your answer has only superscripts :( While x^2 works for me, x_2 does not.Disaster

© 2022 - 2024 — McMap. All rights reserved.