Last active
November 16, 2017 19:09
-
-
Save FloWuenne/114e309d8121baad269ff0179ce9e4a9 to your computer and use it in GitHub Desktop.
Theme for publication quality graphs. Modified from https://rpubs.com/Koundy/71792!
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
| ##Plotting theme from (https://rpubs.com/Koundy/71792) | |
| theme_Publication_custom <- function(base_size=14, base_family="helvetica") { | |
| library(grid) | |
| library(ggthemes) | |
| (theme_foundation(base_size=base_size, base_family=base_family) | |
| + theme(plot.title = element_text(face = "bold", | |
| size = rel(1.2), hjust = 0.5), | |
| text = element_text(), | |
| panel.background = element_rect(colour = NA), | |
| plot.background = element_rect(colour = NA), | |
| panel.border = element_rect(colour = NA), | |
| axis.title = element_text(face = "bold",size = rel(1)), | |
| axis.title.y = element_text(angle=90,vjust =2), | |
| axis.title.x = element_text(vjust = -0.2), | |
| axis.text = element_text(), | |
| axis.line = element_line(colour="black"), | |
| axis.ticks = element_line(), | |
| panel.grid.major = element_line(colour="#f0f0f0"), | |
| panel.grid.minor = element_blank(), | |
| legend.key = element_rect(colour = NA), | |
| legend.position = "bottom", | |
| legend.direction = "horizontal", | |
| legend.key.size= unit(0.2, "cm"), | |
| legend.margin = unit(0, "cm"), | |
| legend.title = element_text(face="italic"), | |
| plot.margin=unit(c(10,5,5,5),"mm"), | |
| strip.background=element_rect(colour="#f0f0f0",fill="#f0f0f0"), | |
| strip.text = element_text(face="bold") | |
| )) | |
| } | |
| scale_fill_Publication <- function(...){ | |
| library(scales) | |
| discrete_scale("fill","Publication",manual_pal(values = c("#386cb0","#fdb462","#7fc97f","#ef3b2c","#662506","#a6cee3","#fb9a99","#984ea3","#ffff33")), ...) | |
| } | |
| scale_colour_Publication <- function(...){ | |
| library(scales) | |
| discrete_scale("colour","Publication",manual_pal(values = c("#386cb0","#fdb462","#7fc97f","#ef3b2c","#662506","#a6cee3","#fb9a99","#984ea3","#ffff33")), ...) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment