gpt4 book ai didi

r - 将 geom_hline 图例添加到现有的几何条图例

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

我想在表示虚线的现有图例下添加一个图例,以便将虚线标记为“avg tx effect”并置于研究 3 之下。

enter image description here

library(ggplot2)
library(ggthemes)

#dput(df)

df=structure(list(study = structure(c(1L, 2L, 3L, 1L, 2L, 3L, 1L,
2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L), .Label = c("study1", "study2",
"study3"), class = "factor"), d = c(-0.205, 0.1075, 0.3525, -0.37,
0.3, 0.42, -0.28, 0.09, 0.59, 0.11, -0.05, 0.25, 0, 0.25, 0.49
), Outcome = c(1L, 1L, 1L, 2L, 2L, 2L, 3L, 3L, 3L, 4L, 4L, 4L,
5L, 5L, 5L), Outcome2 = structure(c(1L, 1L, 1L, 4L, 4L, 4L, 7L,
7L, 7L, 10L, 10L, 10L, 13L, 13L, 13L), .Label = c("1", "1", "1",
"2", "2", "2", "3", "3", "3", "4", "4", "4", "5", "5", "5"), class = "factor")), .Names = c("study",
"d", "Outcome", "Outcome2"), row.names = c(NA, -15L), class = "data.frame")

ggplot(df, aes(x=Outcome2, y=d, fill=study)) +
geom_bar(position=position_dodge(), aes(x=Outcome2),stat="identity",
colour="black", # Use black outlines,
size=.3) + # Thinner lines
xlab("Outcome") +
ylab("Cohen's D Effect Size") +
scale_fill_grey(name="Study",
labels=c("study1","study2", "study3"))+
theme_bw()+
geom_hline(yintercept=.15,linetype=2)

最佳答案

ggplot 的一般特性是,要生成图例,您需要 map 您的 aesthetics(例如 linetype) 到数据中的一个变量,而不是设置它为常量。在 geom_hline 的情况下,这可以通过将截距放在单独的数据帧中来实现。另请注意 show_guide = TRUE

然后使用 scale_linetype_manual 自定义图例。 fill 图例中的黑线使用 override.aes 删除。

这是您的代码的精简版本,仅显示最必要的步骤:

df2 <- data.frame(yi = 0.15)

ggplot(data = df, aes(x = Outcome2, y = d, fill = study)) +
geom_bar(position = "dodge", stat = "identity") +
geom_hline(data = df2, aes(yintercept = yi, linetype = factor(yi)), show_guide = TRUE) +
scale_linetype_manual(name = "avg tx effect", values = "dashed", labels = "") +
guides(fill = guide_legend(override.aes = list(linetype = "blank")))

enter image description here

关于r - 将 geom_hline 图例添加到现有的几何条图例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31546736/

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