下面是一个图表。如何反转 Y 轴,使其向下读取“a b”而不是“b a”,同时单独保留 X 轴?

r - 如何在 ggplot 的 geom_tile 中反转 Y 轴?-LMLPHP

代码:

library(ggplot2)
levels = ordered(c('a', 'b'))
data = data.frame(x=ordered(c('a', 'a', 'b', 'b'), levels=levels),
                  y=ordered(c('a', 'b', 'a', 'b'), levels=levels),
                  prob=c(0.3, 0.7, 0.4, 0.6))
ggplot(data, aes(x, y)) + geom_tile(aes(fill=prob))

最佳答案

我想通了。

ggplot(data, aes(x, ordered(y, levels=rev(levels)))) +
  geom_tile(aes(fill=prob))
r - 如何在 ggplot 的 geom_tile 中反转 Y 轴?-LMLPHP

10-08 12:57