I need to plot multiple plots on a page. I'd like to have a letter on the top left of each plot (e.g. A or B etc). How would I do this with ggplot2?
It's not mentioned in the ggplot2 manual (Hadley Wickham) neither can I find it by searching web indices.
Here's some code that you can use for the illustration.
library( ggplot2 )
p1 <- qplot( rnorm( 10 ), rnorm( 10 ) )
p2 <- qplot( rnorm( 10 ), rnorm( 10 ) )
grid.arrange( p1, p2, nrow=1 )
p1 + ggtitle("plot A") + theme(title=element_text(hjust=0))- baptiste