,可以通过以下步骤实现:
install.packages("ggplot2")
library(ggplot2)
df <- data.frame(x = c("A", "B", "C", "D"), y = c(10, 20, 15, 30))
p <- ggplot(df, aes(x = x, y = y)) + geom_bar(stat = "identity")
p <- p + geom_text(aes(label = y), vjust = -0.5)
print(p)
这样就可以在ggplot的比例数据条形图中添加计数标签了。根据具体需求,可以进一步调整图表的样式、颜色等。
领取专属 10元无门槛券
手把手带您无忧上云