I am using ggplot to plot some data across 5 facets and I want to put some text that says "Delta = #" where Delta is the upper case math delta symbol and # is 1,2,3,4, or 5 based on which facet it is. Here is what I have:
annotate("text",x="baseline",y=75,label=paste(expression(Delta),"=",1:5))
My line of code works but it spells out Delta rather than giving me the Delta symbol. How can I get the math symbol?