Loads data from the National Electrical Energy Agency (ANEEL), a Brazilian independent federal agency linked to the Ministry of Mines and Energy (MME). ANEEL works to provide favorable conditions for the Electrical Energy Market to develop with balance and for the benefit of society.
As for now, there are three different datasets available for download: Energy Development Budget, Energy Generation, and Energy Enterprises Distributed.
The Energy Development Budget dataset showcases the Energy Development Account’s (CDE) annual budget expenses. The CDE is designed to promote the Brazilian energy development and is managed by the Electrical Energy Commercialization Chamber (CCEE).
In the current implementation, data is available from 2017 to 2022 and must be downloaded by year. The year argument can be a single year or a vector of years. The dataset includes the type of expense, its value in R$ (Reais), and its share over the total amount of CDE budget expenses in each year.*.
*Note that ‘share_of_total’ values sum to 1 for each year available.
The Energy Generation dataset showcases information about ANEEL’s Generation Informations System (SIGA). SIGA provides information about the Brazilian electrical energy generation installed capacity.
The dataset provides information at the individual venture/entity level. It contains information about the power, source, stage, type of permission, origin and final fuel with which each venture/entity operates, as well as other legal, technical and geographical information.* Operation start dates contained in the dataset go as far back as 1924 up to 2022.
* For more details on each variable, access This link and select “Manual do Usuario”.
The Energy Enterprises dataset showcases information about distributed micro and mini generators, covered by the Regulatory Resolution nº 482/2012. The list of projects is classified by variables that make up their identification, namely: connected distributor, project code, numerical nucleus of the project code, owner name, production class, subgroup, name of the owner, number of consumer units that receive credits, connection date, type of generating unit, source, installed power, municipality, and federative unit where it is located.
The data is expressed in quantities and installed power in kW (kilowatt). The quantity corresponds to the number of distributed micro or mini generators installed in the specified period. The installed power is defined by the sum of the nominal active electric power of the generating units.
* For more details on each variable, access This link and select “Dicionário de dados”.
Options:
"energy_development_budget": government spending
towards energy sources"energy_generation": energy generation by
entity/corporation"energy_enterprises_distributed": distributed micro and
mini generatorsTRUE: if you want the data as it is originally.FALSE: if you want the treated version of the
data.("pt") and English ("eng")Examples:
# download treated data about energy generation
clean_aneel <- load_aneel(
dataset = "energy_generation",
raw_data = FALSE
)
# download raw CDE data for one year
budget_aneel_2019 <- load_aneel(
dataset = "energy_development_budget",
raw_data = TRUE,
year = 2019
)
# download raw CDE data for multiple years
budget_aneel_multi <- load_aneel(
dataset = "energy_development_budget",
raw_data = TRUE,
year = c(2020, 2021)
)