Created
September 23, 2017 03:43
-
-
Save dylanjm/d8a386514a31a0bebca92cc1bb7fceeb to your computer and use it in GitHub Desktop.
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
math335_theme <- function() { | |
theme_bw() + theme(panel.border = element_blank(), | |
panel.grid.major = element_blank(), | |
panel.grid.minor = element_blank(), | |
axis.line = element_line(colour = "black"), | |
plot.title = element_text(face="bold"), | |
axis.title = element_text(face="bold"), | |
plot.caption = element_text(face="italic", size = 8, color = "#4d4d4d")) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment