scale_fill_discrete和scale_fill_manual - 图例选项混淆

时间:2014-08-07 07:19:17

标签: r colors plot ggplot2 scale

我在ggplot2对象上应用两个不同的更改时遇到问题。我有一个有3组的条形图。我想:

  1. 为每个组设置颜色
  2. 重新排列图例标签的顺序
  3. 我找到了以下解决上述问题的方法:

    1. + scale_fill_manual(values = c("red", "green", "blue"))
    2. + scale_fill_discrete(guide = guide_legend(reverse=TRUE))
    3. 问题是第二个应用程序(+ scale_fill_discrete(...))覆盖了第一个应用程序:

      Scale for 'fill' is already present. Adding another scale for 'fill', which will replace the existing scale.
      

      (两者都分别工作正常)。怎么处理呢?

1 个答案:

答案 0 :(得分:27)

你不需要加倍,这应该有效:

  scale_fill_manual(values = c("red", "green", "blue"),name= "My name", guide = guide_legend(reverse = TRUE))