Match by Date (Blocking)
Description
Finds matches between the DATE-columns in the inputs.
Input
A [OBJ,DATE]: a list of candidates, in which theDATE-column will be used for comparison and theOBJ-column will be the resultB [OBJ,DATE]: a list of candidates, in which theDATE-column will be used for comparison and theOBJ-column will be the resultCandidates [OBJ,OBJ]: candidate pairs, onlyAs andBs that are in Candidates will be matched
Output
RESULT [OBJ,OBJ]: the matched objects fromAandBNOTA [OBJ]: the objects from A that did not match with an item fromBNOTB [OBJ]: the objects from B that did not match with an item fromA
Parameters
Comparison: Comparison function to use (=,!=,<,>,<=,>=,day-distance)Max day-distance: whenComparisonis set today-distance, the match is valid only if the difference in days between the two dates is not greater than this valueExclude self-matches: whether to emit the match if the objects inAandBare the same. Mostly useful whenAandBcome from the same source