String Matching - Score

Hi, I have to compare the addresses of customers from two different tables. Each customer has a unique ID assigned to them and is the primary key for both the tables.I tried using the similarity search but it would search for the similar string in the entire second table and return closest match, while i need to check the strings against specific customer ids

Can you explain how can I use similarity score to return score against each customer id

Table 1 :

image

Table 2 :
image

Hi @Pranjal_m,

why do you not use a Joiner-Node?

Best Regards
Andrew

Use Joiner on IDs as @Andrew_Steel said and then get similarity using


node with n-gram.

I have come along some questions of address deduplication and string similarity. I created a collection of maybe useful links and KNIME discussions along with some sample workflows. Maybe they can serve as an inspiration.

Also you could upload sample data (if they are not confidential) that represent you challenge - and the desired outcome. It might then be easier to get an idea how this could work.

My challenge is with understanding how does the string distance and string similarity nodes work ?

  1. How does it know which two columns should be compared

  2. How can I specify that the address1 of a customer should be matched with address2 of the customer? currently the similarity looks up the address in the entire table (all the customers) and returns the nearest match irrespective of customer_id.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.