extract_legal_form: Extract Legal Forms

Description Usage Arguments Value Examples

View source: R/extract_legal_form.R

Description

Description

Usage

1
2
3
4
5
6
7
extract_legal_form(
  .tab,
  .col_name,
  .col_country = NULL,
  .legal_forms = data.frame(),
  .workers = future::availableCores()
)

Arguments

.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())

Value

A dataframe

Examples

1
2
3
4
5
6
extract_legal_form(
  .tab = table_source[1:100, ], 
  .col_name = "name", 
  .col_country = "iso3",
  .workers = 1
  )

MatthiasUckert/Rmatch documentation built on Jan. 3, 2022, 11:09 p.m.