gpt4 book ai didi

list - 我可以将一系列相似的数据帧合并到一个数据帧中吗?

转载 作者:行者123 更新时间:2023-12-02 05:10:56 25 4
gpt4 key购买 nike

我有一个数据框:

foo <- list(df1 = data.frame(x=c('a', 'b', 'c'),y = c(1,2,3)), 
df2 = data.frame(x=c('d', 'e', 'f'),y = c(4,5,6)))

我可以将其转换为以下形式的单个数据框:

data.frame(x = c('a', 'b', 'c', 'd', 'e', 'f'), y= c(1,2,3,4,5,6))

最佳答案

do.call("rbind", foo) 应该可以解决问题。

关于list - 我可以将一系列相似的数据帧合并到一个数据帧中吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5187794/

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