如何更改ggplot2中的图例标签以显示R中的数据?

时间:2018-04-26 15:06:00

标签: r ggplot2 legend

我正在使用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")

这给了我以下情节:enter image description here

但是,我想更改图例标签,以便“-1”为“非常负面”或“+1”为“非常正面”。

有人可以帮我吗?

0 个答案:

没有答案