【发布时间】:2018-03-30 03:26:18
【问题描述】:
我有一个数据框:
source= c("A", "A", "B")
target = c("B", "C", "C")
source_A = c(5, 5, 6)
target_A = c(6, 7, 7)
source_B = c(10, 10, 11)
target_B = c(11, 12, 12)
c = c(0.5, 0.6, 0.7)
df = data.frame(source, target, source_A, target_A, source_B, target_B, c)
> df
source target source_A target_A source_B target_B c
1 A B 5 6 10 11 0.5
2 A C 5 7 10 12 0.6
3 B C 6 7 11 12 0.7
如何减少此数据框以仅返回唯一源值和目标值的值并返回(忽略 c 列)。
对于值 [A B C]
id A B
1 A 5 10
2 B 6 11
3 C 7 12
目前我正在做这样的事情:
df1 <- df[,c("source","source_A", "source_B")]
df2 <- df[,c("target","target_A", "target_B")]
names(df1)[names(df1) == 'source'] <- 'id'
names(df1)[names(df1) == 'source_A'] <- 'A'
names(df1)[names(df1) == 'source_B'] <- 'B'
names(df2)[names(df2) == 'target'] <- 'id'
names(df2)[names(df2) == 'target_A'] <- 'A'
names(df2)[names(df2) == 'target_B'] <- 'B'
df3 <- rbind(df1,df2)
df3[!duplicated(df3$id),]
id A B
1 A 5 10
3 B 6 11
5 C 7 12
实际上,我有几十个专栏,所以从长远来看这是不可行的。
我怎样才能更简洁地做到这一点(理想情况下,可以推广到更多列)?
【问题讨论】:
-
相同
id的source和target值总是相同? -
@LAP 是的(或者我搞砸了......)其他列中 A 的值将始终特定于 A,(即使每列的值不同)。
标签: r join dataframe merge duplicates