Description Usage Arguments Value Examples
Match company names against Databses
| 1 2 | copm_match(names, match.table = NULL, match.type = c("full", "sub",
  "approx"), nthreads = 1)
 | 
| names | A charcter string of company names | 
| match.table | A table prepared by copm_prep_names | 
| match.type | Any combination of c("full", "sub", "approx") | 
A list with matches
| 1 2 3 4 5 | library(tpfuns)
table <- tibble::tibble(id = c(1,2,3), firm = c("BASF GMBH", "BASF AG", "BASF SE (GER)"))
match.table <- copm_prep_db(table, "firm", "id")
names <- c("BASF GMBH", "BASF AG", "Siemens AG")
copm_match(names, match.table, "full")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.