load_cempre {datazoom.amazonia} | R Documentation |
CEMPRE - Central Register of Companies
Description
Loads information on companies and other organizations and their respective formally constituted local units, registered with the CNPJ - National Register of Legal Entities.
Usage
load_cempre(
dataset = "cempre",
raw_data = FALSE,
geo_level,
time_period,
language = "eng",
sectors = FALSE
)
Arguments
dataset |
A dataset name ("cempre"). |
raw_data |
A |
geo_level |
A |
time_period |
A |
language |
A |
sectors |
A |
Value
A tibble
.
Examples
## Not run:
# Download raw data (raw_data = TRUE) at the country level
# from 2008 to 2010 (time_period = 2008:2010).
data <- load_cempre(
raw_data = TRUE,
geo_level = "country",
time_period = 2008:2010
)
# Download treted data (raw_data = FALSE) by state (geo_level = "state")
# from 2008 to 2010 (time_period = 2008:2010) in portuguese (language = "pt").
# In this example, data is split by sector (sectors = TRUE)
data <- load_cempre(
raw_data = FALSE,
geo_level = "state",
time_period = 2008:2010,
language = "pt",
sectors = TRUE
)
## End(Not run)
[Package datazoom.amazonia version 1.1.0 Index]