gpt4 book ai didi

r - scale_fill_discrete 和 scale_fill_manual - 图例选项混淆

转载 作者:行者123 更新时间:2023-12-03 08:05:21 24 4
gpt4 key购买 nike

我在 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.

    (分别它们都可以正常工作)。如何处理?

    最佳答案

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

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

    关于r - scale_fill_discrete 和 scale_fill_manual - 图例选项混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25176399/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com