Here is my example:
a <- data.frame(X=c(1,2,3,4,5),Y=c(1,2,3,4,5),A1=c(1,2,3,4,5),A2=c(6,7,8,9,10))
A1 and A2 are two types of annotation. Now I only can add one annotation into the plot.
library(ggplot2)
ggplot(data=a,aes(x=X,y=Y,label=A1)) +
geom_point() +
geom_text(hjust=0,vjust=-1)
Can I put A1 and A2 into the plot? So it looks like A1 and A2 are one the same vertical line, and A1 is on top of A2?
