fuzzy and exact match of two databases

前端 未结 2 1950
春和景丽
春和景丽 2021-01-24 13:18

I have two databases. The first one has about 70k rows with 3 columns. the second one has 790k rows with 2 columns. Both databases have a common variable grantee_name

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-24 13:47

    I haven't used foreach before but maybe the variable x is already the individual rows of zz1?

    Have you tried:

    stringdist_inner_join(x, zz2, by="grantee_name", method="jw", p=0.1, max_dist=0.1, distance_col="distance")

    ?

提交回复
热议问题