我想使用包将一些联合事件的概率呈现为栅格,并想知道在多个像元值的情况下ggplot2
如何决定提升哪个值。geom_raster
我有一些案例,由于某些原因,这些事件可能具有多个概率。在下面的代码和上面的图片中,我在坐标 (10, 10) 处说明了我的问题点。是否geom_raster
考虑最后一个值?有样品吗?
library(ggplot2)
# Normal raster
r <- data.frame(x = 1:10, y = rep(10, 10), value = 1:10)
p1 <- ggplot(r, aes(x, y, fill=value))+
geom_raster()+
coord_equal()+
theme(legend.position = 'bottom')+
labs(title = 'Normal raster: every cell has one value')
p1
# Assuming that coordinate (10, 10) have values 10 and 0
r <- rbind(r, c(10, 10, 0))
p2 <- ggplot(r, aes(x, y, fill=value))+
geom_raster()+
coord_equal()+
theme(legend.position = 'bottom')+
labs(title = 'Raster having 2 different values (10 then 0) at coordinates (10, 10)')
p2