我有两个数据框,df1
和df2
。我想将df1
分组,以便我只获得df2
中的区域 - 时间对。
在R中执行此操作的最有效方法是什么? (Python也是奖金)
df1=structure(list(area = c("1", "1", "1", "1", "1", "1"), time = c(12138L,
12198L, 12659L, 12670L, 12672L, 12719L)), .Names = c("area", "time"
), row.names = c(NA, 6L), class = "data.frame")
df2=structure(list(area = c("1", "1", "1", "1", "1", "1"), time = c(12138L,
12198L, 12266L, 12272L, 12284L, 12332L)), .Names = c("area", "time"
), row.names = c(NA, 6L), class = "data.frame")
答案 0 :(得分:0)
如果您的示例代表您的数据,请尝试:
merge(df1,df2)
area time
1 1 12138
2 1 12198