R package implementation of two algorithms from the open source software OpenRefine. These functions take a character vector as input, identify and cluster similar values, and then merge clusters together so their values become identical. The cluster methods used are key collision and ngram fingerprint (more info on these here).
In addition, there are few add-on features included, to make the clustering/merging functions more useful. These include approximate string matching to allow for merging despite minor mispellings, the option to pass a dictionary vector to dictate edit values, and the option to pass a vector of strings to ignore during the clustering process. Examples of these features are all shown below.
This package is built using stringdist for approximate string matching, ngram for string tokenization, and Rcpp to allow for functions written in C for faster performance.
# install.packages("devtools")
devtools::install_github("ChrisMuir/refinr")
Installing this package directly from GitHub requires a C compiler. See here for an explaination of how to meet this requirement for Windows, Mac and Linux.
x <- c("Acme Pizza, Inc.", "Acme Pizza, Inc.", "ACME PIZZA COMPANY", "acme pizza LLC")
key_collision_merge(x)
#> [1] "Acme Pizza, Inc." "Acme Pizza, Inc." "Acme Pizza, Inc." "Acme Pizza, Inc."
A dictionary character vector can be passed to key_collision_merge
, which will dictate merge values when a cluster has a match within the dict vector.
x <- c("Acme Pizza, Inc.", "Acme Pizza, Inc.", "ACME PIZZA COMPANY", "acme pizza LLC")
key_collision_merge(x, dict = c("Nicks Pizza", "acme PIZZA inc"))
#> [1] "acme PIZZA inc" "acme PIZZA inc" "acme PIZZA inc" "acme PIZZA inc"
Function n_gram_merge
can be used to merge similar values that contain slight spelling differences.
x <- c("Acmme Pizza, Inc.", "ACME PIZA COMPANY", "Acme Pizzazza LLC")
n_gram_merge(x, edit_dist_weights = c(d = 0.2, i = 0.2, s = 1, t = 1))
#> [1] "ACME PIZA COMPANY" "ACME PIZA COMPANY" "ACME PIZA COMPANY"
# The performance of the approximate string matching can be ajusted using parameter edit_dist_weights.
n_gram_merge(x, edit_dist_weights = c(d = 1, i = 1, s = 0.1, t = 0.1))
#> [1] "Acme Pizzazza LLC" "ACME PIZA COMPANY" "Acme Pizzazza LLC"
Both key_collision_merge
and n_gram_merge
have optional arg ignore_strings
, which takes a character vector of strings to be ignored during the merging of values.
x <- c("Bakersfield Highschool", "BAKERSFIELD high", "high school, bakersfield")
key_collision_merge(x, ignore_strings = c("high", "school", "highschool"))
#> [1] "BAKERSFIELD high" "BAKERSFIELD high" "BAKERSFIELD high"
The clustering is designed to be insensitive to common business name suffixes, i.e. "inc", "llc", "co", etc. This feature can be turned on/off using function parameter bus_suffix
.
For larger input vectors, this is useful for comparing the original strings to the edited strings.
library(dplyr)
x <- c("Acme Pizza, Inc.", "Acme Pizzza, Inc.", "ACME PIZZA COMPANY", "acme pizza LLC")
x_refin <- x %>%
refinr::key_collision_merge() %>%
refinr::n_gram_merge()
# Create df for checking the results.
inspect_results <- data_frame(old = x, new = x_refin) %>%
mutate(equal = old == new)
# Display only the values that were edited by refinr.
inspect_results[!inspect_results$equal, c("old", "new")]
#> # A tibble: 3 x 2
#> old new
#> <chr> <chr>
#> 1 Acme Pizza, Inc. ACME PIZZA COMPANY
#> 2 Acme Pizzza, Inc. ACME PIZZA COMPANY
#> 3 acme pizza LLC ACME PIZZA COMPANY
- This package is NOT meant to replace OpenRefine for every use case. For situations in which merging accuracy is the most important consideration, OpenRefine is preferable. Since the merging steps in refinr are automated, there will usually be more false positive merges, versus manually selecting clusters to merge in OpenRefine.
- The advantages this package has over OpenRefine:
- Operations are fully automated.
- Facilitates a more reproducible workflow.
- Seems to handle larger datasets better (1000000 - 5000000 observations).