scale_fill_discrete 和 scale_fill_manual - 图例选项混淆
Posted
技术标签:
【中文标题】scale_fill_discrete 和 scale_fill_manual - 图例选项混淆【英文标题】:scale_fill_discrete and scale_fill_manual - legend options confusion 【发布时间】:2014-09-30 08:00:43 【问题描述】:在我的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.
(分别它们都可以正常工作)。如何处理?
【问题讨论】:
【参考方案1】:你不需要把它加倍,这应该可以工作:
scale_fill_manual(values = c("red", "green", "blue"), name = "My name",
guide = guide_legend(reverse = TRUE))
【讨论】:
以上是关于scale_fill_discrete 和 scale_fill_manual - 图例选项混淆的主要内容,如果未能解决你的问题,请参考以下文章