gpt4 book ai didi

r - 如何在 R 中 dplyr::inner_join 多 tbls 或 data.frames

转载 作者:行者123 更新时间:2023-12-03 21:29:38 26 4
gpt4 key购买 nike

在 R 中,我如何才能 inner_join多个 tblsdata.frame s 有效吗?

例如:

devtools::install_github("rstudio/EDAWR")
library(EDAWR)
library(dplyr)
data(songs)
data(artists)
test <- songs
colnames(test) <- c("song2", "name")
inner_join(songs, artists,by="name") %>% inner_join(test,by="name")

有几百个 test -like data.frames我想加入。

最佳答案

您可以收集列表中的数据框并使用 Reduce :

L <- list(songs, artists, test)
Reduce(inner_join, L)

# name plays song song2
# 1 John guitar Across the Universe Across the Universe
# 2 John guitar Come Together Across the Universe
# 3 John guitar Across the Universe Come Together
# 4 John guitar Come Together Come Together
# 5 Paul bass Hello, Goodbye Hello, Goodbye

您可以使用 L <- mget(ls()) (使用可选的 pattern arg 到 ls )将所有内容放入列表。

正如@akrun 在评论中提到的, plyr替代方案是:
library(plyr)
join_all(L, type='inner')

关于r - 如何在 R 中 dplyr::inner_join 多 tbls 或 data.frames,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28250948/

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