gpt4 book ai didi

r - 如何使用 bind_rows() 并忽略列名

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

这个问题在这里已经有了答案:





Simplest way to get rbind to ignore column names

(2 个回答)


3年前关闭。




这个问题之前可能已经回答过,但我似乎找不到答案。您如何使用bind_rows()只需 union这两个表并忽略列名。bind_rows() 上的文档有以下例子:

#Columns don't need to match when row-binding
bind_rows(data.frame(x = 1:3), data.frame(y = 1:4))

这将返回列 xy .如何在不更改列名的情况下只取回一列?
所需的输出,我真的不在乎列名最终是什么:
  x
1 1
2 2
3 3
4 1
5 2
6 3
7 4

最佳答案

您可以使用快速的 2 行函数来执行此操作:

force_bind = function(df1, df2) {
colnames(df2) = colnames(df1)
bind_rows(df1, df2)
}
force_bind(df1, df2)

输出:
  x
1 1
2 2
3 3
4 1
5 2
6 3
7 4

关于r - 如何使用 bind_rows() 并忽略列名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50361378/

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