Joining two datasets using fuzzy logic

后端 未结 1 635
北恋
北恋 2020-12-01 17:21

I’m trying to do a fuzzy logic join in R between two datasets:

  • first data set has the name of a location and a column called config
  • secon
相关标签:
1条回答
  • 2020-12-01 17:42

    I was able to join the two datasets, using the fuzzyjoin package:

    library(fuzzyjoin)
    stringdist_inner_join(Dataset1, Data2,
         by ="Name", distance_col = NULL)
    
    0 讨论(0)
提交回复
热议问题