gpt4 book ai didi

在 R 中 reshape 数据

转载 作者:行者123 更新时间:2023-12-04 10:36:30 25 4
gpt4 key购买 nike

我想 reshape 一个数据框,我正在努力阅读 reshape 和堆栈函数的文档。我的数据框是这样的:

x<-rnorm(n=20, mean=0, sd=1)
y<-rnorm(n=20, mean=10, sd=1)
fact<-rep(1:5, times=4)
df<-data.frame(x,y,fact)

最后,我想要一个 2 列数据框 (40x2),其中一列带有 x 和 y“堆叠”,一列带有相应的 x&y 因子

最佳答案

一个带有melt

的衬垫
reshape2::melt(df, id = 'fact', variable.name = 'xy')

关于在 R 中 reshape 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8089488/

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