如何将geom_text标签对齐躲闪的geom_col

时间:2018-06-07 13:26:05

标签: r ggplot2 geom-text geom-col

我似乎无法找到一种方法让这个(躲闪的)geom_col上的文字标签按照各自的列排列。

我在SO和其他网站上尝试了很多建议解决方案,这是我能得到的最接近的建议:

enter image description here

我该如何解决这个问题?

代码:

ggplot(leads[leads$key_as_string <= max(leads$key_as_string) - 1, ], aes(fill = type)) +
  geom_col(aes(x = key_as_string, y = doc_count),
           colour = "black",
           position = position_dodge(1)) +
  scale_y_continuous(limits = c(0, max(leads$doc_count))) +
  geom_text(aes(x = key_as_string, y = doc_count, label = doc_count, group = key_as_string),
            hjust = 0.5,
            vjust = -0.5,
            size = 3,
            colour = "black",
            position = position_dodge(1)) +
  theme(panel.grid.minor.x = element_blank(),
        panel.grid.major.x = element_blank(),
        axis.text = element_text(colour = "black"))

1 个答案:

答案 0 :(得分:1)

根据我的评论,group = key_as_string是罪魁祸首。该代码基本上告诉ggplot在同一组中保留两个标签具有相同的key_as_string值,否定了闪避命令。

以下钻石数据集的插图。我们可以看到删除group美学地图会更改标签&#39;的位置:

p <- ggplot(diamonds %>%
              filter(cut %in% c("Fair", "Good")) %>%
              group_by(cut, clarity) %>%
              summarise(carat = mean(carat)), 
            aes(clarity, carat, fill = cut, label = round(carat, 2))) + 
  geom_col(position = position_dodge(1))

gridExtra::grid.arrange(
  p + geom_text(position = position_dodge(1), aes(group = clarity)),
  p + geom_text(position = position_dodge(1)),
  ncol = 1
)

plot