在 R 中合并 - 合并相似的内容...简单

发布于 2024-12-09 13:23:41 字数 371 浏览 0 评论 0原文

我有两个像这样的数据框:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情愿 2024-12-16 13:23:41
df2 <- data.frame(A=c(1,5,3,9), C=c(5,9,1,1))
df1 <- data.frame(A=c(1,2,5,3,9), B=c(6,7,4,3,9))
merge(df1,df2)
df2 <- data.frame(A=c(1,5,3,9), C=c(5,9,1,1))
df1 <- data.frame(A=c(1,2,5,3,9), B=c(6,7,4,3,9))
merge(df1,df2)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文