将数据标签与ggplot2中条形图的中心对齐

时间:2016-07-20 09:14:36

标签: r ggplot2

我需要帮助将ggplot中条形图的数据标签与条形图上方的每个条形图的中心对齐。 X轴上的月份也在重复。请在下面找到我的闪亮应用程序的ggplot代码,

ggplot(data = chart_m, aes(x = `Reporting Month`, y = `Total tags generating alert`, fill = HSL)) +
    geom_bar(stat = "identity", position = 'dodge') +
    geom_text(aes(label = `Total tags generating alert`), position = position_dodge(width = .9), vjust = -.1, size = 6) +
    scale_x_date(labels = date_format("%b-%y")) +
    theme_grey()

供您参考我已附上图片。我需要将所有数据标签与中心的每个栏对齐。

ggplot

预期产出

enter image description here

赞赏任何投入。

的问候,
莫汉

0 个答案:

没有答案