load_pibmunic {datazoom.amazonia} | R Documentation |
Loads information on gross domestic product at current prices, taxes, net of subsidies, on products at current prices and gross value added at current prices, total and by economic activity, and respective shares. Survey is done at Country, state and municipality level and data is available from 2002 to 2019.
load_pibmunic(
dataset = "pibmunic",
raw_data,
geo_level,
time_period,
language = "eng",
legal_amazon_only = FALSE
)
dataset |
A dataset name ("pibmunic") with Municipal GDP information. You can also use SIDRA codes (See https://sidra.ibge.gov.br/pesquisa/pib-munic/tabelas) |
raw_data |
A |
geo_level |
A |
time_period |
A |
language |
A |
legal_amazon_only |
A |
A tibble
with the selected data.
## Not run:
# download state raw data from 2012 for all country
pibmunic <- load_pibmunic(
dataset = "pibmunic",
raw_data = TRUE,
geo_level = "state",
time_period = 2012,
legal_amazon_only = FALSE
)
## End(Not run)