Let's say I have a data.frame like this:
molten <- data.frame(
Var1 = factor(
rep(c("A", "B", "C", "D"), 5),
levels = c("A", "B", "C", "D", "E", "F", "G", "H", "I", "J")
),
Var2 = rep(6:10, each = 4L),
value = c(
-0.468920099229389, 0.996105987531978, -0.527496444770932, -0.767851702991822,
-0.36077954422072, -0.145335912847538, 0.114951323188032, 0.644232124274217,
0.971443502096584, 0.774515290180507, -0.436252398260595, -0.111174676975868,
1.16095688943808, 0.44677656465583, -0.708779168274131, 0.460296447139761,
-0.475304748445917, -0.481548436194392, -1.66560630161765, -2.06055347675196
),
na = rep(c(FALSE, TRUE, FALSE, TRUE, FALSE), c(8L, 1L, 7L, 1L, 3L)),
row.names = c(
51L, 52L, 53L, 54L, 61L, 62L, 63L, 64L, 71L, 72L, 73L, 74L,
81L, 82L, 83L, 84L, 91L, 92L, 93L, 94L
)
)
head(molten)
Var1 Var2 value na
1 A 1 -0.2413015 FALSE
2 B 1 1.5077282 FALSE
3 C 1 -1.0798806 TRUE
4 D 1 2.0723791 FALSE
Now, I want to plot a tile (or raster) plot using ggplot and mark those tiles which have na=TRUE
. Currently I plot the marks as points:
g <- ggplot( molten ) +
geom_raster( aes( x = Var1, y = Var2, fill = value ) ) +
scale_fill_gradient2( low = "blue", high = "red", na.value="black", name = "" ) +
geom_point( aes( x = Var1, y = Var2, size= as.numeric(na) ) )
However, I don't like this plot very much for two reasons:
- There is still a point drawn even if
molten$na = FALSE
. Sure I could specifydata=molten[ molten$na, ]
, but actually this should be possible without specifying another data set. - I don't like the points, but would rather like to have frames around or stripes through the tiles. But I have no idea how to achieve this. If I would use
geom_segment()
for stripes, how would I specifyyend
andxend
?