load_pevs {datazoom.amazonia} | R Documentation |
PEVS - Forestry Activities
Description
Loads information on the amount and value of the production of the exploitation of native plant resources and planted forest massifs, as well as existing total and harvested areas of forest crops.
Usage
load_pevs(dataset, raw_data = FALSE, geo_level, time_period, language = "eng")
Arguments
dataset |
A dataset name ("pevs_forest_crops", "pevs_silviculture" or "pevs_silviculture_area"). You can also use SIDRA codes (see https://sidra.ibge.gov.br/pesquisa/pevs/quadros/brasil/2019) |
raw_data |
A |
geo_level |
A |
time_period |
A |
language |
A |
Value
A tibble
consisting of geographic units that present positive values for any of the variables in the dataset.
Examples
## Not run:
# Download treated (raw_data = FALSE) silviculture data (dataset = 'pevs_silviculture')
# by state (geo_level = 'state') from 2012 (time_period = 2012)
# in portuguese (language = "pt")
data <- load_pevs(
dataset = "pevs_silviculture",
raw_data = FALSE,
geo_level = "state",
time_period = 2012,
language = "pt"
)
# Download raw (raw_data = TRUE) forest crops data by region from 2012 to 2013 in english
data <- load_pevs(
dataset = "pevs_forest_crops",
raw_data = TRUE,
geo_level = "region",
time_period = 2012:2013
)
## End(Not run)