Description Usage Arguments Value Examples
Description
1 | join_data(.source, .target, .cols_match, .cols_join, .method = "osa")
|
.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. |
.method |
One of "osa", "lv", "dl", "hamming", "lcs", "qgram", "cosine", "jaccard", "jw", "soundex". |
A Dataframe
1 2 3 4 5 6 7 | join_data(
.source = table_source,
.target = table_target,
.cols_match = c("name", "iso3", "city", "address"),
.cols_join = c("name", "iso3"),
.method = "osa"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.