Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个数据框,一个叫做gs,另一个叫做mmpc. 每个数据框有两列,但行数不同。我正在寻找两个数据框共有的行数。有谁知道如何做到这一点?
gs
mmpc
注意:两个数据框的行顺序不同,数据框的行数也不同。
另一种方式:
sum(duplicated(rbind(gs, mmpc))[-seq_len(nrow(gs))])
一种选择是使用merge:
merge
nrow(merge(gs,mmpc,by.x=1:2,by.y=1:2))