geom_col 堆叠条形图中每个条形段中间的位置 geom_text

Position geom_text in the middle of each bar segment in a geom_col stacked barchart

我想将相应的值标签放置在 geom_col 堆叠条形图中每个条形段的中间

然而,我天真的尝试失败了。

library(ggplot2) # Version: ggplot2 2.2

dta <- data.frame(group  = c("A","A","A",
                             "B","B","B"),
                  sector = c("x","y","z",
                             "x","y","z"),
                  value  = c(10,20,70,
                             30,20,50))

ggplot(data = dta) +
  geom_col(aes(x = group, y = value, fill = sector)) +
  geom_text(position="stack",
            aes(x = group, y = value, label = value)) 

显然,为 geom_text 设置 y=value/2 也无济于事。此外,文本的位置顺序错误(颠倒)。

任何(优雅的)想法如何解决这个问题?

您需要将一个变量映射到一种美学来代表 geom_text 中的组。对于您来说,这是您的 "sector" 变量。您可以在 geom_text.

中将其与 group 美学一起使用

然后使用 position_stackvjust 使标签居中。

ggplot(data = dta) +
    geom_col(aes(x = group, y = value, fill = sector)) +
    geom_text(aes(x = group, y = value, label = value, group = sector),
                  position = position_stack(vjust = .5))

您可以通过全局设置美学来节省一些打字时间。然后 fill 将用作 geom_text 的分组变量,您可以跳过 group.

ggplot(data = dta, aes(x = group, y = value, fill = sector)) +
    geom_col() +
    geom_text(aes(label = value),
              position = position_stack(vjust = .5))