Description Usage Arguments Value Examples
View source: R/extract_legal_form.R
Description
1 2 3 4 5 6 7 | extract_legal_form(
.tab,
.col_name,
.col_country = NULL,
.legal_forms = data.frame(),
.workers = future::availableCores()
)
|
.tab |
A dataframe (either the source or target dataframe) |
.col_name |
The column with firm names |
.col_country |
Optionally, a column with iso3 country codes |
.legal_forms |
A dataframe with legal forms |
.workers |
Number of cores to utilize (Default all cores determined by future::availableCores()) |
A dataframe
1 2 3 4 5 6 | extract_legal_form(
.tab = table_source[1:100, ],
.col_name = "name",
.col_country = "iso3",
.workers = 1
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.