I want to add two captions for the footer. But it seems that ggplot will only take 1. Is there a workaround to add an annotation or geom_text to the bottom left and right hand corners.
library(ggplot2)
p <- ggplot(mtcars, aes(x=wt, y = mpg)) +
geom_point()
p + labs(caption = "left footer") + theme(plot.caption=element_text(hjust=0))
p + labs(caption = "right footer") + theme(plot.caption=element_text(hjust=1))
p + labs(caption = "right footer") + theme(plot.caption=element_text(hjust=1)) +
labs(caption = "left footer") + theme(plot.caption=element_text(hjust=0))