Matchcode Optimization:Consonants: Difference between revisions
Created page with "{{MatchcodeOptimizationNav |AlgorithmsCollapse= }} ==Consonants== ===Specifics=== Only consonants will be compared. Vowels will be removed. ‘Y’ is defined as a vowel in t..." |
No edit summary |
||
Line 13: | Line 13: | ||
Returns a match if two strings’ consonants match exactly. | Returns a match if two strings’ consonants match exactly. | ||
===Example Matchcode | ===Example Matchcode Component=== | ||
:[[File:MCO_Algorithm_Consonants.png|link=]] | :[[File:MCO_Algorithm_Consonants.png|link=]] | ||
===Example Data | ===Example Data=== | ||
{{ExampleDataTableV1|STRING1|STRING2|RESULT | {{ExampleDataTableV1|STRING1|STRING2|RESULT | ||
|AdditionalRows= | |AdditionalRows= |
Revision as of 23:02, 25 September 2018
Consonants
Specifics
Only consonants will be compared. Vowels will be removed. ‘Y’ is defined as a vowel in this algorithm.
Summary
This algorithm removes vowels from the string and compares two strings based on their consonants.
Returns
Returns a match if two strings’ consonants match exactly.
Example Matchcode Component
Example Data
STRING1 STRING2 RESULT Ron Doe Ron Doe67 Match Lynda Dylan Unique Tim Tom Match Brian Ian Unique
Performance | |||||
---|---|---|---|---|---|
Slower | Faster | ||||
Matches | |||||
More Matches | Greater Accuracy |
Recommended Usage
Hybrid Deduper, where a single incoming record can quickly be evaluated independently against each record in an existing large master database.
Databases created via real-time data entry where audio likeness errors are introduced.
Databases of US and English language origin.
Not Recommended For
Database where disemvoweling was used to reduce storage space (https://en.wikipedia.org/wiki/Disemvoweling).
Do Not Use With
UTF-8 data. This algorithm was ported to MatchUp with the assumption that a character equals one byte, and therefore results may not be accurate if the data contains multi-byte characters.