load_ppm {datazoom.amazonia} | R Documentation |
Loads information on animal farming inventories and livestock products (IBGE). Survey is done at the municipal level and data is available from 1974 to 2020 for most datasets. See https://www.ibge.gov.br/en/statistics/economic/agriculture-forestry-and-fishing/17353-municipal-livestock-production.html?=&t=o-que-e
load_ppm(dataset = NULL, raw_data, geo_level, time_period, language = "eng")
dataset |
A dataset name ("ppm_livestock_inventory", "ppm_sheep_farming", "ppm_animal_orig_production", "ppm_cow_farming" or "ppm_aquaculture". You can also use SIDRA codes (see https://sidra.ibge.gov.br/pesquisa/ppm/tabelas/brasil/2019) |
raw_data |
A |
geo_level |
A |
time_period |
A |
language |
A |
A tibble
consisting of geographic units that present positive values for any of the variables in the dataset.
## Not run:
# download state raw data from 2012 for animal origin production
ppm_aop <- load_ppm(
dataset = "ppm_animal_origin_production",
raw_data = TRUE,
geo_level = "state",
time_period = 2012
)
## End(Not run)