Created
March 20, 2015 05:59
-
-
Save trengrj/a806b6d1a28d6c794304 to your computer and use it in GitHub Desktop.
This file contains hidden or 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("grid"); | |
theme_ice <- function () | |
{ | |
theme( | |
text = element_text(size=16, family="Ubuntu Condensed"), | |
plot.title = element_text(size=16, family="Ubuntu Condensed"), | |
legend.title = element_text(size=14, family="Ubuntu Condensed", face = "italic"), | |
legend.position = c(.9, .5), | |
legend.key = element_rect(fill = "#f0f1f2",size=2), | |
panel.background = element_rect(fill = "#f0f1f2"), | |
panel.grid.major.x = element_blank(), | |
panel.grid.major.y = element_line(colour = "#d3d3d3"), | |
panel.grid.minor = element_blank(), | |
plot.background = element_rect(fill = "#f0f1f2"), | |
axis.ticks = element_line(color = "black"), | |
axis.line = element_line(colour = "black"), | |
axis.line.y = element_blank(), | |
axis.ticks.margin = unit(0.2, "cm"), | |
axis.ticks.length = unit(0.2, "cm"), | |
axis.ticks.y = element_blank(), | |
plot.margin = unit(c(1.5, 0.8, 0.8, 0.8), "cm"), | |
axis.title.x = element_text(vjust=-0.3), | |
axis.title.y = element_text(vjust=1.5) | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment