我想将相应的值标签放在每个条形段中间的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
也无济于事。此外,文本的顺序错误(反向)。
任何(优雅)想法如何解决这个问题?
答案 0 :(得分:17)
您需要将一个变量映射到美学,以表示geom_text
中的组。对你来说,这是你的&#34;部门&#34;变量。您可以将其与group
中的geom_text
美学结合使用。
然后使用position_stack
与vjust
对齐标签。
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))