Assume we have this simple plot:
ggplot(data = msleep, aes(x = log(bodywt), y = sleep_total)) +
geom_point(aes(color = vore)) +
theme(legend.position="bottom")
Is it possible to add a text below the legend items? I know how to add a title (above) the legend. But lets say I want some other general information written below.
Would be very pleased to find a solution to that.
Thanks! Martin