我在ggplot2
对象上应用两个不同的更改时遇到问题。我有一个有3组的条形图。我想:
我找到了以下解决上述问题的方法:
+ scale_fill_manual(values = c("red", "green", "blue"))
+ scale_fill_discrete(guide = guide_legend(reverse=TRUE))
问题是第二个应用程序(+ scale_fill_discrete(...)
)覆盖了第一个应用程序:
Scale for 'fill' is already present. Adding another scale for 'fill', which will replace the existing scale.
(两者都分别工作正常)。怎么处理呢?
答案 0 :(得分:27)
你不需要加倍,这应该有效:
scale_fill_manual(values = c("red", "green", "blue"),name= "My name", guide = guide_legend(reverse = TRUE))