-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal-theme.R
More file actions
22 lines (17 loc) · 895 Bytes
/
final-theme.R
File metadata and controls
22 lines (17 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 36-462: Data Mining Final
# 05/06/17
# theme for ggplot graphs
library(ggplot2)
final_theme <- theme_grey() +
theme(axis.text = element_text(),
panel.grid.major = element_line(colour = "#DCDCDC"),
panel.grid.minor = element_blank(),
panel.background = element_rect(fill = "white"),
axis.title.y = element_text(face = "bold", family = "Times", size = 14),
axis.title.x = element_text(face = "bold", family = "Times", size = 14),
axis.text.x = element_text(face = "bold", family = "Times", size = 12),
axis.text.y = element_text(face = "bold", family = "Times", size = 12),
plot.title = element_text(color = "black", face = "bold", family = "Times", size = 16),
legend.text = element_text(face = "bold", family = "Times"),
legend.title = element_text(face = "bold", family = "Times"))
color_palette <- c("")