This question demonstrates how to put an equation into a ggplot2 qplot.
q <- qplot(cty, hwy, data = mpg, colour = displ)
q + xlab(expression(beta +frac(miles, gallon)))
How could I create an empty ggplot2 plot so that I could add the label to an empty canvas?
and based on @ilya’s recommendation,
geom_blankis perfect for when you already have data and can just set the scales based on that rather than define it explicitly.