gpt4 book ai didi

r - 使用 facet_wrap 和 ggplot2 在每个方面绘制整个数据

转载 作者:行者123 更新时间:2023-12-04 05:37:14 24 4
gpt4 key购买 nike

我正在尝试为 facet_wrap 绘制折线图对于每个数据集。我想要的是浅灰色、透明或其他颜色,所有数据集都在背景中。

df <- data.frame(id=rep(letters[1:5], each=10),
x=seq(10),
y=runif(50))

ggplot(df, aes(x,y, group=id)) +
geom_line() +
facet_wrap(~ id)

enter image description here

这张图是我得到的多远,但我也希望在每个图中都有其他所有缺失的 4 行...无论如何,我尝试使用 facet_wrap ,我只得到一行的数据。

对于每个方面,我所期望的都是这样的。
ggplot(df, aes(x,y, group=id)) + 
geom_line() +
geom_line(data=df[1:10,], aes(x,y, group=id), size=5)

enter image description here

最佳答案

这是另一种方法:

首先添加一个与 id 相同的新列:

df$id2 <- df$id

然后再添加一个 geom_line基于没有原始 id 列的 df:
ggplot(df, aes(x,y, group=id)) + 
geom_line(data=df[,2:4], aes(x=x, y=y, group=id2), colour="grey") +
geom_line() +
facet_wrap(~ id)

enter image description here

关于r - 使用 facet_wrap 和 ggplot2 在每个方面绘制整个数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35550411/

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