向条形图添加标签时出错

时间:2016-12-04 13:19:23

标签: r ggplot2 bar-chart labels

Image showing Barplot

我正在绘制分布图,以获取不同极性类别的推文数量。我在ggplot2中绘制了如下图所示的绘图,但收到错误Error in eval(expr, envir, enclos) : object 'y' not found。请帮忙。

ggplot(sentimentdf, aes(x=emotionfit)) + 
  geom_bar(aes(y=..count.., fill=emotionfit)) +
  scale_fill_brewer(palette="Dark2") + labs(x="Emotion Categories", y="Number of Tweets", title="Emotion Classification") +
  geom_point() +
  geom_text(aes(label = y))

0 个答案:

没有答案