我正在使用ggplot2来显示R中的一些数据。
因此我使用以下命令:
ggplot(second_sentiment_counts)+
aes(x = sentiment, y = n, fill = as.factor(sentiment)) +
geom_bar(stat = "identity") +
labs(title = "Deep Learning\nSentiment Analysis Results using RNTN",
x = "Sentiments",
y = "Occurences") +
scale_fill_manual(values = c("darkred", "red4", "blue", "green4", "darkgreen"),
name = "Sentiment\nValues")
但是,我想更改图例标签,以便“-1”为“非常负面”或“+1”为“非常正面”。
有人可以帮我吗?