在 R 中合并 - 合并相似的内容...简单
我有两个像这样的数据框:
A B
1 6
2 7
5 4
3 3
9 9
和另一个:
A C
1 5
5 9
3 1
9 1
我想合并它们以创建
A B C
1 6 5
5 4 9
3 3 1
9 9 1
通知,在合并版本中,没有 A=2 因为这不会出现在第二个数据框中(即使它显示在第一个)。所以基本上,我希望它合并存在的内容,并忽略不存在的内容。目前,合并完全失败,因为两个 A 列不完全相同。
I have two data frames like so:
A B
1 6
2 7
5 4
3 3
9 9
and the other one:
A C
1 5
5 9
3 1
9 1
and I want to merge them to create
A B C
1 6 5
5 4 9
3 3 1
9 9 1
notice that in the merged version, there is no A=2 because this does not show up in the second data frame (even though it shows up in the first). So basically, I want it to merge what exists, and leave out what doesn't. Currently, the merge fails completely because the two A columns are not exactly the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)