forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeom-raster.r
55 lines (40 loc) · 1.85 KB
/
geom-raster.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
vcontext("geom-raster")
set.seed(1)
# 3 x 2 ----------------------------------------------------------------------
df <- data.frame(x = rep(c(-1, 1), each = 3), y = rep(-1:1, 2), z = 1:6)
ggplot(df, aes(x, y, fill = z)) + geom_raster() + geom_point(colour = "red")
save_vtest("3 x 2")
ggplot(df, aes(x, y, fill = z)) + geom_raster() + geom_point(colour = "red") +
xlim(-2, 2) + ylim(-2, 2)
save_vtest("3 x 2, set limits")
ggplot(df, aes(x, y, fill = z)) + geom_raster(hjust = 0, vjust = 0) +
geom_point(colour = "red")
save_vtest("3 x 2, just = (0, 0)")
# 1 x 3 ----------------------------------------------------------------------
df <- data.frame(x = -1:1, y = 0, z = 1:3)
ggplot(df, aes(x, y, fill = z)) + geom_raster() + geom_point(colour = "red")
save_vtest("1 x 3")
ggplot(df, aes(x, y, fill = z)) + geom_raster() + geom_point(colour = "red") +
xlim(-2, 2) + ylim(-2, 2)
save_vtest("1 x 3, set limits")
ggplot(df, aes(x, y, fill = z)) + geom_raster(hjust = 0, vjust = 0) +
geom_point(colour = "red")
save_vtest("1 x 3, just = (0, 0)")
# 3 x 1 ----------------------------------------------------------------------
df <- data.frame(x = 0, y = -1:1, z = 1:3)
ggplot(df, aes(x, y, fill = z)) + geom_raster() + geom_point(colour = "red")
save_vtest("3 x 1")
ggplot(df, aes(x, y, fill = z)) + geom_raster() + geom_point(colour = "red") +
xlim(-2, 2) + ylim(-2, 2)
save_vtest("3 x 1, set limits")
ggplot(df, aes(x, y, fill = z)) + geom_raster(hpad = 0.25, vpad = 0) +
geom_point(colour = "red")
save_vtest("3 x 1, just = (0, 0)")
# Categorical fill, irregular swatches ---------------------------------------
df <- expand.grid(x = 1:10, y = 1:10)
df$col <- (df$x + df$y) %% 2
df$col[df$x == 5 & df$col == 1] <- NA
df$col[df$y == 5 & df$col == 0] <- NA
qplot(x, y, data = df, fill = factor(col), geom = "raster")
save_vtest("irregular categorical")
end_vcontext()