Hi all,
I was just wondering if matchit allows a many-to-one matching. For example, if I have many entries of a name in one dataset and then only one entries of the same name in the other dataset, would a match be possible using those datasets?
I was just wondering if matchit allows a many-to-one matching. For example, if I have many entries of a name in one dataset and then only one entries of the same name in the other dataset, would a match be possible using those datasets?

) correct. -matchit- does many-to-many (m:m), which allows for m:1 and 1:m particular cases. However, depending on the two datasets sizes, I always recommend running unique names (i.e. unique instances of str variable) against unique names to avoid running redundant comparisons.
Comment