identify_join_pairs {vvauditor} | R Documentation |
Identify Possible Join Pairs Between Data Frames
Description
This function identifies potential join pairs between two data frames based on the overlap between the distinct values in their columns. It returns a data frame showing the possible join pairs.
Usage
identify_join_pairs(..., similarity_cutoff = 0.2)
Arguments
... |
A list of two data frames. |
similarity_cutoff |
The minimal percentage of overlap between the distinct values in the columns. |
Value
A data frame showing candidate join pairs.
Examples
identify_join_pairs(iris, iris3)
[Package vvauditor version 0.6.0 Index]