我繪製了越來越計數鳴叫不同極性的類別數量的分佈圖。我正在繪製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))
您是否在代碼中的任何位置聲明變量y?否則,這個:geom_text(aes(label = y))沒有意義。 – molig