28

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)
Community
  • 1
  • 1
Richard Herron
  • 9,760
  • 12
  • 69
  • 116

2 Answers2

27

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=).

chl
  • 27,771
  • 5
  • 51
  • 71
13

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

cbare
  • 12,060
  • 8
  • 56
  • 63
Dylan Craven
  • 147
  • 1
  • 2
  • `Error: stat_count() can only have an x or y aesthetic.` – bers Oct 27 '21 at 12:10
  • 4
    Interestingly, this question is about subscripts, but your answer has only superscripts :( While `x^2` works for me, `x_2` does not. – bers Oct 27 '21 at 12:14