Learn R Programming

joinspy (version 0.7.3)

.detect_near_matches: Detect Near-Matches Between Keys

Description

Finds keys that almost match (small edit distance).

Usage

.detect_near_matches(x_keys, y_keys, max_distance = 2, max_candidates = 10)

Value

A list with near-match information.

Arguments

x_keys

Unique keys from left table.

y_keys

Unique keys from right table.

max_distance

Maximum 'Levenshtein' distance to consider a near-match.

max_candidates

Maximum number of near-match candidates to return.