gpt4 book ai didi

r - ggplot2 geom_area 边缘不垂直

转载 作者:行者123 更新时间:2023-12-05 00:51:56 30 4
gpt4 key购买 nike

我正在尝试使用 ggplot 的 geom_area 以不同颜色填充曲线下区域的切片(x 轴) .但不知何故,我无法使区域的侧面垂直。这是一个最小的可重现示例:

library(ggplot2)
x = 1:10
pdat = data.frame(y = log(x), x = x)
ggplot(pdat, aes(x=x, y=y)) +
geom_area(aes(y = ifelse(y > 2 & y < 5, y, 0)),
fill = "red", alpha = 0.5) +
geom_line()

enter image description here

感谢您的建议!

最佳答案

问题是,对于 x = 7,y 值现在为 0,但对于 x = 8,y 值为 2.0794415,因此插入了两者之间的区域。

您可以改为使用 pdat 的子集为 geom_area :

ggplot() +
geom_area(data = pdat[pdat$y > 2 & pdat$y < 5,], aes(x = x, y = y),
fill = "red", alpha = 0.5) +
geom_line(data = pdat, aes(x = x, y = y))

enter image description here

关于r - ggplot2 geom_area 边缘不垂直,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43686875/

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