gpt4 book ai didi

使用 ggplot2 从 geom_rect 中删除边框

转载 作者:行者123 更新时间:2023-12-05 00:48:07 24 4
gpt4 key购买 nike

我有这个代码:

library(ggplot2)
ggplot(data = bayes, aes(x = Order, y = value, fill=key, color=key)) +
geom_rect(aes(xmin = Order, xmax = dplyr::lead(Order), ymin= -Inf, ymax =Inf, colour=Summary),
alpha=0.1) +
geom_line(size=0.5) +
geom_point() +
xlab("Bayesian combination") +
ylab("Bayesian probability") +
theme(legend.position="none") +
ylim(0,1) +
xlim(1,126)

只是为了让你知道我的数据结构:
> str(bayes)
'data.frame': 252 obs. of 5 variables:
$ Summary : chr "1 vs. 6" "1 vs. 6" "1 vs. 6" "1 vs. 6" ...
$ Combination: chr "I1 if I2CP3P4M1M2" "I2 if I1CP3P4M1M2" "C if I1I2P3P4M1M2" "P3 if I1I2CP4M1M2" ...
$ Order : int 126 125 124 123 122 121 120 119 118 117 ...
$ key : chr "Lower_XVIII_UBU" "Lower_XVIII_UBU" "Lower_XVIII_UBU" "Lower_XVIII_UBU" ...
$ value : num 1 0.35 0.93 0.73 0.95 0.32 0.88 0.13 0.93 0.84 ...

我的问题是我无法从 geom_rect 对象中删除轮廓和边框,使图形变得难以理解。

enter image description here

如您所见,我有 5 个由五种颜色表示的组。然而,在它们内部有很多子矩形,每个子矩形都有自己的边界。我想删除图表中的所有边框,那么,代码中的问题在哪里?

最佳答案

文档中的示例:

df <- data.frame(
x = rep(c(2, 5, 7, 9, 12), 2),
y = rep(c(1, 2), each = 5),
z = factor(rep(1:5, each = 2)),
w = rep(diff(c(0, 4, 6, 8, 10, 14)), 2)
)

你这样做:
ggplot(df, aes(xmin = x - w / 2, xmax = x + w / 2, ymin = y, ymax = y + 1, fill = z)) +
geom_rect(aes(color = z), alpha = 0.1)

enter image description here

问题在于 alpha仅适用于 fill ,而不是边界(设置为 color )。解决方法是通过设置(不映射) color完全去除边框至 NA :
ggplot(df, aes(xmin = x - w / 2, xmax = x + w / 2, ymin = y, ymax = y + 1, fill = z)) +
geom_rect(color = NA, alpha = 0.3)

enter image description here

关于使用 ggplot2 从 geom_rect 中删除边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50343911/

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