load_seeg.Rd
Loads data of estimates of emission of greenhouse gases
load_seeg(dataset, raw_data = FALSE, geo_level, language = "eng")
A dataset name ("seeg", seeg_farming", "seeg_industry", "seeg_energy", "seeg_land", "seeg_residuals"). On which "seeg" contains all five sectors (only works with raw_data = TRUE) and the others are filtered specifically by a main source of emission.
A boolean
setting the return of raw (TRUE
) or processed (FALSE
) data.
A string
that defines the geographic level of the data. Can be one of "country", "state" or "municipality".
A string
that indicates in which language the data will be returned. Portuguese ("pt") and English ("eng") are supported.
A tibble
.
if (FALSE) {
# Download raw data (raw_data = TRUE) of greenhouse gases (dataset = "seeg")
# by state (geo_level = "state")
data <- load_seeg(
dataset = "seeg",
raw_data = TRUE,
geo_level = "state"
)
# Download treated data (raw_data = FALSE) of industry greenhouse gases (dataset = "seeg_industry")
data <- load_seeg(
dataset = "seeg_industry",
raw_data = FALSE,
geo_level = "state"
)
}