Complete energy balances
Data - Eurostat
Info
Last observation: Annual: 2024 (N = 1,156,881)
First observation: Annual: 1990 (N = 1,066,377)
Last data update: 14 aoû 2026, 21:56. Last compile: 15 aoû 2026, 02:22
Structure
Final Energy Consumption
Major Economies
Code
nrg_bal_c |>
filter(nrg_bal == "FC_E",
siec == "TOTAL",
unit == "KTOE",
geo %in% c("FR", "DE", "IT", "ES")) |>
year_to_date() |>
mutate(values = values/1000) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
theme_minimal() + scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1990, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Final energy consumption (Mtoe)")
France: By Sector
Code
nrg_bal_c |>
filter(nrg_bal %in% c("FC_IND_E", "FC_TRA_E", "FC_OTH_HH_E"),
siec == "TOTAL",
unit == "KTOE",
geo == "FR") |>
year_to_date() |>
mutate(values = values/1000) |>
ggplot() + geom_line(aes(x = date, y = values, color = Nrg_bal)) +
theme_minimal() +
scale_x_date(breaks = as.Date(paste0(seq(1990, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.3, 0.85),
legend.title = element_blank()) +
xlab("") + ylab("Final energy consumption (Mtoe)")

