scale_fill_discrete和scale_fill_manual – 图例选项混淆

前端之家收集整理的这篇文章主要介绍了scale_fill_discrete和scale_fill_manual – 图例选项混淆前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个问题,应用两个不同的更改在我的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))
原文链接:https://www.f2er.com/css/216418.html

猜你在找的CSS相关文章