-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathggplot2themes.R
183 lines (177 loc) · 9.7 KB
/
ggplot2themes.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# ggplot2 Themes
# DPI, Presentation, Dissertation
# Redundant now, think about deleting
library(gridExtra)
theme_dpi<-function (base_size = 16, base_family = "")
{
structure(list(axis.line = theme_blank(),
axis.text.x = theme_text(family = base_family,size = base_size * 1.05,
lineheight = 0.9, vjust = 1),
axis.text.y = theme_text(family = base_family,
size = base_size * 1.05, lineheight = 0.9, hjust = 1),
axis.ticks = theme_segment(colour = "black",size = 0.2),
axis.title.x = theme_text(family = base_family,
size = base_size*1.2, face='bold',vjust = 0.25),
axis.title.y = theme_text(family = base_family,
size = base_size*1.2, face='bold',angle = 90,
vjust = 0.5),
axis.ticks.length = unit(0.06, "cm"),
axis.ticks.margin = unit(0.06, "cm"),
legend.background = theme_rect(colour = NA),
legend.margin = unit(0.2, "cm"),
legend.key = theme_rect(colour = "grey80"),
legend.key.size = unit(1.2, "lines"),
legend.key.height = NULL,
legend.key.width = NULL,
legend.text = theme_text(family = base_family,
size = base_size * 0.8),
legend.text.align = NULL,
legend.title = theme_text(family = base_family,
size = base_size * 0.9,
face = "bold", hjust = 0),
legend.title.align = NULL,
legend.position = "right",
legend.direction = NULL,
legend.justification = "center",
legend.box = NULL,
panel.background = theme_rect(fill = "white", colour = NA),
panel.border = theme_rect(fill = NA, colour = "grey50"),
panel.grid.major = theme_line(colour = "grey90", size = 0.2),
panel.grid.minor = theme_line(colour = "grey98", size = 0.5),
panel.margin = unit(0.25, "lines"),
strip.background = theme_rect(fill = "grey80", colour = "grey50"),
strip.text.x = theme_text(family = base_family,
size = base_size * 0.8),
strip.text.y = theme_text(family = base_family,
size = base_size * 0.8, angle = -90),
plot.background = theme_rect(colour = NA),
plot.title = theme_text(family = base_family, size = base_size *
1.4), face='bold',plot.margin = unit(c(1, 1, 0.5, 0.5), "lines")),
class = "options")
}
theme_dpi_map<-function (base_size = 14, base_family = "")
{
structure(list(axis.line = theme_blank(),
axis.text.x = theme_blank(),
axis.text.y = theme_blank(),
axis.ticks = theme_blank(),
axis.title.x = theme_blank(),
axis.title.y = theme_blank(),
axis.ticks.length = unit(0.06, "cm"),
axis.ticks.margin = unit(0.06, "cm"),
legend.background = theme_rect(colour = NA),
legend.margin = unit(0.2, "cm"),
legend.key = theme_rect(colour = "grey80"),
legend.key.size = unit(.8, "lines"),
legend.key.height = NULL,
legend.key.width = NULL,
legend.text = theme_text(family = base_family,
size = base_size * 0.65),
legend.text.align = NULL,
legend.title = theme_text(family = base_family,
size = base_size * 0.8,
face = "bold", hjust = 0),
legend.title.align = NULL,
legend.position = "bottom",
legend.direction = NULL,
legend.justification = "center",
legend.box = NULL,
panel.background = theme_rect(fill = "white", colour = NA),
panel.border = theme_rect(fill = NA, colour = "grey50"),
panel.grid.major = theme_blank(),
panel.grid.minor = theme_blank(),
panel.margin = unit(0.25, "lines"),
strip.background = theme_rect(fill = "grey80", colour = "grey50"),
strip.text.x = theme_text(family = base_family,
size = base_size * 0.8),
strip.text.y = theme_text(family = base_family,
size = base_size * 0.8, angle = -90),
plot.background = theme_rect(colour = NA),
plot.title = theme_text(family = base_family, size = base_size *
1.4), face='bold',plot.margin = unit(c(1, 1, 0.5, 0.5), "lines")),
class = "options")
}
theme_dpi_map2<-function (base_size = 18, base_family = "")
{
structure(list(axis.line = theme_blank(),
axis.text.x = theme_blank(),
axis.text.y = theme_blank(),
axis.ticks = theme_blank(),
axis.title.x = theme_blank(),
axis.title.y = theme_blank(),
axis.ticks.length = unit(0.06, "cm"),
axis.ticks.margin = unit(0.06, "cm"),
legend.background = theme_rect(colour = "black"),
legend.margin = unit(0.4, "cm"),
legend.key = theme_rect(colour = "grey80"),
legend.key.size = unit(.7, "lines"),
legend.key.height =NULL,
legend.key.width = NULL,
legend.text = theme_text(family = base_family,
size = base_size * 0.5),
legend.text.align =NULL,
legend.title = theme_text(family = base_family,
size = base_size * 0.7,
face = "bold", hjust = 0),
legend.title.align = NULL,
legend.position = c(.13,.15),
legend.direction = 'vertical',
legend.justification = "center",
legend.box = NULL,
panel.background = theme_rect(fill = "white", colour = NA),
panel.border = theme_rect(fill = NA, colour = NA),
panel.grid.major = theme_blank(),
panel.grid.minor = theme_blank(),
panel.margin = unit(0.25, "lines"),
strip.background = theme_rect(fill = "grey80", colour = "grey50"),
strip.text.x = theme_text(family = base_family,
size = base_size * 0.8),
strip.text.y = theme_text(family = base_family,
size = base_size * 0.8, angle = -90),
plot.background = theme_rect(colour = NA),
plot.title = theme_text(family = base_family, size = base_size *
1.4), face='bold',plot.margin = unit(c(1, 1, 0.5, 0.5), "lines")),
class = "options")
}
theme_dpi_mapPNG<-function (base_size = 18, base_family = "")
{
structure(list(axis.line = theme_blank(),
axis.text.x = theme_blank(),
axis.text.y = theme_blank(),
axis.ticks = theme_blank(),
axis.title.x = theme_blank(),
axis.title.y = theme_blank(),
axis.ticks.length = unit(0.06, "cm"),
axis.ticks.margin = unit(0.06, "cm"),
legend.background = theme_rect(colour = "black"),
legend.margin = unit(0.4, "cm"),
legend.key = theme_rect(colour = "grey80"),
legend.key.size = unit(1.3, "lines"),
legend.key.height =NULL,
legend.key.width = NULL,
legend.text = theme_text(family = base_family,
size = base_size * 0.9),
legend.text.align =NULL,
legend.title = theme_text(family = base_family,
size = base_size * 1,
face = "bold", hjust = 0),
legend.title.align = NULL,
legend.position = c(.13,.15),
legend.direction = 'vertical',
legend.justification = "center",
legend.box = NULL,
panel.background = theme_rect(fill = "white", colour = NA),
panel.border = theme_rect(fill = NA, colour = NA),
panel.grid.major = theme_blank(),
panel.grid.minor = theme_blank(),
panel.margin = unit(0.25, "lines"),
strip.background = theme_rect(fill = "grey80", colour = "grey50"),
strip.text.x = theme_text(family = base_family,
size = base_size * 0.8),
strip.text.y = theme_text(family = base_family,
size = base_size * 0.8, angle = -90),
plot.background = theme_rect(colour = NA),
plot.title = theme_text(family = base_family, size = base_size *
1.4), face='bold',plot.margin = unit(c(1, 1, 0.5, 0.5), "lines")),
class = "options")
}