I am generating graphs for a publication and I\'d like to be able to label the panels of a figure in ggplot itself (as opposed to exporting to publisher, etc) so that they j
The easiest way is probably to use a title and a subtitle,
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species, shape = Species))+
geom_jitter(size = 6.5) +
labs(title = "A", subtitle = "The Actual Long, Normal Title of Titliness") +
theme(plot.subtitle = element_text(hjust = 0.5))