Write the output of match_name()
into a .csv file with:
# Writting to current working directory
matched %>%
readr::write_csv("matched.csv")
Compare, edit, and save the data manually:
name
and name_abcd
manually to determine if the match is valid. Other information can be used in conjunction with just the names to ensure the two entities match (sector, internal information on the company structure, etc.)score
value to 1
.score
value to anything other than 1
.Re-read the edited file (validated) with:
# Reading from current working directory
valid_matches <- readr::read_csv("valid_matches.csv")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.