gpt4 book ai didi

r - 包括每个 facet_wrap 中所有数据的绘图

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

数据框 (借自 here):

df.test <- data.frame(id = rep(1:6, each = 50), x = rnorm(50*6, mean = 10, sd = 5), 
y = rnorm(50*6, mean = 20, sd = 10),
z = rnorm(50*6, mean = 30, sd = 15))

剧情:
library(ggplot2)
ggplot(df.test, aes(x)) + geom_histogram() + facet_wrap(~id)



请求帮助:
我想将整个数据的直方图叠加到每个方面,以提供每个方面与总数据集的即时比较,如果可能的话,我希望将整个数据集显示为 freq_poly():
ggplot(df.test, aes(x)) + geom_freqpoly()

enter image description here

最佳答案

您可以从对 geom_freqpoly 的调用中排除 facetting 变量。

ggplot(df.test, aes(x)) + geom_histogram() + facet_wrap(~id) +
geom_freqpoly(data = df.test[, "x", drop = FALSE], col = "red")

enter image description here

关于r - 包括每个 facet_wrap 中所有数据的绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55920373/

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