I have plot a graph using ggplot2 and am using knitr within Lyx. I am trying to place a label in the plot and am using the annotate command:
ggplot() + annotate("text",y=10,x=0,label="\u3B1",vjust=-1,size = 6)
I believe \u3B1 will generate the greek alpha
symbol. Unfortunately this only generates a normal lower case a
.
How do I get the symbol I require to appear?