我有一个问题,应用两个不同的更改在我的ggplot2对象.我有一个有3组的barplot.我要:
>为每个组设置颜色
>重新排序图例标签的顺序
我已经找到以下解决方案的上述问题:
> 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.
(单独两个工作正常).如何处理?
解决方法
你不需要使它倍增,这应该是工作:
scale_fill_manual(values = c("red","green","blue"),name= "My name",guide = guide_legend(reverse = TRUE))