library(ggplot2)
library(ggthemes)
iris <- iris
ggplot(iris, aes(x=Sepal.Length, y=Sepal.Width, color=Species)) +
geom_point(size =2) + theme_solarized() +
labs(title ="My title",
subtitle = "My subtitle",
caption = "An explanation about the graph",
x = "My title for the x-axis (suggestion: Sepal Length)",
y = "Sepal Width")