forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaspect-ratio.r
28 lines (23 loc) · 1.04 KB
/
aspect-ratio.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
vcontext("aspect-ratio")
p <- ggplot(data.frame(x=1:8, y=1:8, f=gl(2,4), expand.grid(f1=1:2, f2=1:2, rep=1:2)), aes(x, y)) + geom_point()
p + theme(aspect.ratio=3)
save_vtest("height is 3 times width")
p + facet_wrap(~f) + theme(aspect.ratio=3)
save_vtest("height is 3 times width, 2 wrap facets")
p + facet_grid(.~f) + theme(aspect.ratio=3)
save_vtest("height is 3 times width, 2 column facets")
p + facet_grid(f~.) + theme(aspect.ratio=3)
save_vtest("height is 3 times width, 2 row facets")
p + facet_grid(f1~f2) + theme(aspect.ratio=3)
save_vtest("height is 3 times width, 2x2 facets")
p + theme(aspect.ratio=1/3)
save_vtest("width is 3 times height")
p + facet_wrap(~f) + theme(aspect.ratio=1/3)
save_vtest("width is 3 times height, 2 wrap facets")
p + facet_grid(.~f) + theme(aspect.ratio=1/3)
save_vtest("width is 3 times height, 2 column facets")
p + facet_grid(f~.) + theme(aspect.ratio=1/3)
save_vtest("width is 3 times height, 2 row facets")
p + facet_grid(f1~f2) + theme(aspect.ratio=1/3)
save_vtest("width is 3 times height, 2x2 facets")
end_vcontext()