Description Usage Arguments Value Examples
View source: R/main_functions.R
Extract Legal Forms from Company Names
1 | extract_legal_form(.tab, .tab_lf, .workers = 1, .progress = FALSE)
|
.tab |
A table prepared by prepare_tables() |
.tab_lf |
A dataframe generated by make_legal_form_table() |
.workers |
Number of parallel workers |
.progress |
Show progress bar? |
A datframe
1 2 3 4 5 6 7 8 9 10 11 | .path <- system.file("extdata", "test_tables.xlsx", package = "RFirmMatch")
.tab <- openxlsx::read.xlsx(.path)
.tab <- prepare_tables(.tab)
extract_legal_form(.tab, make_legal_form_table())
rm(.tab)
## DEBUG
.tab_lf = NULL
.workers = 2
.progress = FALSE
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.