gpt4 book ai didi

r - 在 R 中使用 facet_grid 单独突出显示数据

转载 作者:行者123 更新时间:2023-12-04 10:58:01 26 4
gpt4 key购买 nike

我在 R 中使用 facet_grid 来绘制 5 个不同组的 RT 数据。我想突出显示每组 5% 到 95% 之间的数据。

在下面的代码中,我使用的是整个数据框的百分位数,而不是每个组的百分位数。关于如何仍然使用 facet_grid 并在图中突出显示每个组的唯一百分位数的任何想法。

rect <- data.frame (xmin=quantile(ss$RT, c(0.05)), 
xmax=quantile(ss$RT, c(0.95)),
ymin=-Inf, ymax=Inf)


qplot(prevRT, RT, group=ss, color = prim,
geom = c("smooth"),
method="lm", data =ss) +
facet_grid(~ Groupe) +
geom_rect(data=rect,
aes(xmin=xmin, xmax=xmax, ymin=ymin, ymax=ymax),
color="grey20", alpha=0.5, inherit.aes = FALSE)

最佳答案

感谢 DWin 的建议,我使用了 大街 分别为每个组找到 xmin 和 xmax 并将其直接合并到绘图命令中。

可能有一种更优雅的方式来做到这一点(欢迎提出建议),但它有效。

qplot(prevRT, RT, group=ss, color = prim, 
geom = c("smooth"),
method="lm", data =ss) +
facet_grid(~ Groupe) +
geom_rect(data=ss,
aes(xmin=ave(ss$RT, ss$Groupe, FUN = function(x)quantile(x,c(0.05))),
xmax=ave(ss$RT, ss$Groupe, FUN = function(x)quantile(x,c(0.95))),
ymin=-Inf,ymax=Inf), color="green", alpha=1/280, inherit.aes = FALSE)

enter image description here

关于r - 在 R 中使用 facet_grid 单独突出显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12485979/

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