Table of Contents

Search

  1. Preface
  2. Transformations
  3. Source transformation
  4. Target transformation
  5. Access Policy transformation
  6. Aggregator transformation
  7. B2B transformation
  8. Cleanse transformation
  9. Data Masking transformation
  10. Data Services transformation
  11. Deduplicate transformation
  12. Expression transformation
  13. Filter transformation
  14. Hierarchy Builder transformation
  15. Hierarchy Parser transformation
  16. Hierarchy Processor transformation
  17. Input transformation
  18. Java transformation
  19. Java transformation API reference
  20. Joiner transformation
  21. Labeler transformation
  22. Lookup transformation
  23. Machine Learning transformation
  24. Mapplet transformation
  25. Normalizer transformation
  26. Output transformation
  27. Parse transformation
  28. Python transformation
  29. Rank transformation
  30. Router transformation
  31. Rule Specification transformation
  32. Sequence transformation
  33. Sorter transformation
  34. SQL transformation
  35. Structure Parser transformation
  36. Transaction Control transformation
  37. Union transformation
  38. Velocity transformation
  39. Verifier transformation
  40. Web Services transformation

Transformations

Transformations

Link scores and driver scores

Link scores and driver scores

The deduplication process adds a link score and a driver score data to the Deduplicate transformation output. You can use the scores to better understand the relationship between duplicate records.
The link score is the score between two records that identifies them as members of the same matching set. The transformation creates a link between a given record and the first record that it matches with a score above the threshold value.
The LinkId field identifies the records to which a link score applies. The link score and link ID values do not imply that a pair of records are the best match in the input data. The purpose of the link score and link ID values is to determine the composition of the matching record set.
The driver score is the score between the first record added to a matching record set and another record in the same set. The transformation uses the sequence ID or row ID values to identify the first record in the set. Driver scores provide a means to assess all records in the set against a single record.
Duplicate analysis generates a single set of scores for the input records. The driver scores and link scores represent the different relationships between the records and do not indicate different types of duplicate analysis. The driver score and link score assignments can depend on the order in which the records enter the transformation. A driver score for a given pair of records might be lower than the threshold value.

Example of link scores and driver scores

A Deduplicate transformation analyzes a column of surname data. The deduplicate asset defines a threshold value of
0.825
for duplicate records.
The following table shows the results that the transformation might return:
Surname
Sequence ID
ClusterId
ClusterSize
DriverId
DriverScore
LinkId
LinkScore
SMITH
1
1
2
1 - 6
1
1 - 1
1
SMYTH
2
2
2
1 - 3
0.83333
1 - 2
1
SMYTHE
3
2
2
1 - 3
1
1 - 2
0.83333
SMITT
4
3
1
1 - 4
1
1 - 4
1
SMITS
5
4
1
1 - 5
1
1 - 5
1
SMITH
6
1
2
1 - 6
1
1 - 1
1
The results provide the following information about the surname data:
  • SMITT and SMITS do not match any other record with a score that meets the threshold. The transformation determines that the records are unique in the data set.
    SMITT and SMITS each have a ClusterSize value of 1, which indicates that they are the only record in their respective sets. To find unique records in the output, search for matching record sets that contain a single record.
  • SMITH and SMITH have a link score of 1. The transformation determines that the records are identical. The transformation adds the records to a single matching record set. The ClusterId value indicates that the records belong to the same set.
  • SMYTH and SMYTHE have a link score of 0.83333. The score exceeds the duplicate threshold. Therefore, the transformation adds the records to a single matching record set.

0 COMMENTS

We’d like to hear from you!