我正在绘制分布图,以获取不同极性类别的推文数量。我在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))