Superscript and subscript axis labels in ggplot2 [duplicate]

You could try

library(ggplot2)
qplot(uptake, data = CO2) +
   xlab(bquote('Assimilation ('*mu~ 'mol' ~CO[2]~ m^-2~s^-1*')'))

enter image description here

Leave a Comment