Description Usage Arguments Value Examples
Description
1 2 3 4 5 6 7 8 9 10 11 12 |
.source |
The Source Dataframe. |
.target |
The Target Dataframe. |
.cols_match |
A character vector of columns to perform fuzzy matching. |
.cols_join |
Columns to perfrom an exact match on, before fuzzy-matching. |
.cols_exact |
Columns that must be matched perfectly. |
.max_match |
Maximum number of matches to return (Default = 10) |
.method |
One of "osa", "lv", "dl", "hamming", "lcs", "qgram", "cosine", "jaccard", "jw", "soundex". |
.verbose |
Print additional information? |
.workers |
Number of cores to utilize (Default all cores determined by future::availableCores()) |
.char_block |
Character Block Size. Used to partition data.
|
A dataframe
1 2 3 4 5 6 7 8 9 10 11 12 13 | tab_source <- table_source[1:100, ]
tab_target <- table_target[1:999, ]
cols_match <- c("name", "iso3", "city", "address")
cols_join <- c("name", "iso3")
cols_exact <- "iso3"
match_data(
.source = tab_source,
.target = tab_target,
.cols_match = cols_match,
.cols_join = cols_join,
.cols_exact = cols_exact
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.