Learn R Programming

vvauditor (version 0.7.0)

identify_join_pairs: 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)

Value

A data frame showing candidate join pairs.

Arguments

...

A list of two data frames.

similarity_cutoff

The minimal percentage of overlap between the distinct values in the columns.

Examples

Run this code
identify_join_pairs(iris, iris3)

Run the code above in your browser using DataLab