将geom_text放置在geom_col堆积条形图中每个条形段的中间

时间:2016-11-21 15:51:06

标签: r ggplot2 stacked-chart geom-text

我想将相应的值标签放在每个条形段中间的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)) 

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

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

1 个答案:

答案 0 :(得分:17)

您需要将一个变量映射到美学,以表示geom_text中的组。对你来说,这是你的&#34;部门&#34;变量。您可以将其与group中的geom_text美学结合使用。

然后使用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))

enter image description here