gpt4 book ai didi

r - 为 geom_hline 添加图例条目

转载 作者:行者123 更新时间:2023-12-04 10:43:16 25 4
gpt4 key购买 nike

我有一个用 ggplot (ggplot + geom_bar) 创建的直方图,我在其中添加了一行,如下所示:

+ geom_hline(aes(yintercept = 0.05), linetype = 'dashed')

我想在图例中添加一个条目,表明虚线是预期值。

虽然在Stack Overflow上也有类似的问题,但我找不到我需要的答案...

知道怎么做吗?

最佳答案

在 ggplot 问题的情况下制作可重现的例子非常方便,下次你应该这样做。这是答案:

ggplot(diamonds, aes(clarity, fill = cut)) + geom_bar(position = "dodge") + 
# linetype has to be aes; show_guide = TRUE is important
geom_hline(aes(yintercept = 1500, linetype = "Expected value"),
show_guide = TRUE) +
# 2 means dashed
scale_linetype_manual("Title", values = 2) +
# This fixes some problems, try linetype = 1 and another legend will be ruined
guides(fill = guide_legend(override.aes = list(linetype = 0)))

enter image description here

关于r - 为 geom_hline 添加图例条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20914151/

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