Created
May 12, 2015 15:32
-
-
Save stephlocke/fb8dd7c819aa11cc222c to your computer and use it in GitHub Desktop.
theme comparisons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(ggplot2) | |
library(optiRum) | |
basicplot<-ggplot(data=iris, | |
aes(x=Sepal.Width, y=Sepal.Length, colour=Species)) + | |
geom_point() + | |
stat_boxplot(fill="transparent") | |
multiplot(basicplot+ggtitle("theme_bw()"), | |
basicplot+theme_minimal()+ggtitle("theme_minimal()"), | |
basicplot+theme_optimum()+ggtitle("theme_optimum()"),cols = 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment