我在data.table
R
> head(d)
COUNT SAMPLE junction
1: 1 R1 tup
2: 1 R1 tup
3: 1 R1 tai
4: 1 R2 milt
5: 2 R3 Bsg25D
6: 1 R4 tutl
维度
> dim(d)
[1] 1685992 3
现在我想找出在数据表中多次出现的对(SAMPLE,junction)。例如,对(R1,tup)发生不止一次
答案 0 :(得分:6)
你可以尝试
library(data.table)
d[,.N>1 ,list(SAMPLE, junction)]