Setting explicit rules for matching records using Python Dedupe library
问题 I'm using the Dedupe library to match person records to each other. My data includes name, date of birth, address, phone number and other personally identifying information. Here is my question: I always want to match two records with 100% confidence if they have a matching name and phone number (for example). Here is an example of some of my code: fields = [ {'field' : 'LAST_NM', 'variable name' : 'last_nm', 'type': 'String'}, {'field' : 'FRST_NM', 'variable name' : 'frst_nm', 'type':