Non-household consumption volumes of gas by consumption bands - nrg_pc_203_v
Data - Eurostat
Last observation: 2025 (N = 165)
First observation: 2017 (N = 132)
Last data update: 12 août 2026, 23:35
Last compile: 05 sept. 2026, 00:40
Structure
Example
France
Code
nrg_pc_203_v |>
filter(geo == "FR") %>%
select_if(~ n_distinct(.) > 1) |>
year_to_date() |>
ggplot() + geom_line(aes(x = date, y = values, color = Nrg_cons)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_log10(breaks = seq(1, 100, 1)) +
theme(legend.position = c(0.45, 0.7),
legend.title = element_blank())
Germany
Code
nrg_pc_203_v |>
filter(geo == "DE") %>%
select_if(~ n_distinct(.) > 1) |>
year_to_date() |>
ggplot() + geom_line(aes(x = date, y = values, color = Nrg_cons)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_log10(breaks = seq(1, 100, 1)) +
theme(legend.position = c(0.45, 0.7),
legend.title = element_blank())
Italy
Code
nrg_pc_203_v |>
filter(geo == "IT") %>%
select_if(~ n_distinct(.) > 1) |>
year_to_date() |>
ggplot() + geom_line(aes(x = date, y = values, color = Nrg_cons)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_log10(breaks = seq(1, 100, 1)) +
theme(legend.position = c(0.45, 0.7),
legend.title = element_blank())
Spain
Code
nrg_pc_203_v |>
filter(geo == "ES") %>%
select_if(~ n_distinct(.) > 1) |>
year_to_date() |>
ggplot() + geom_line(aes(x = date, y = values, color = Nrg_cons)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_log10(breaks = seq(1, 100, 1)) +
theme(legend.position = c(0.45, 0.7),
legend.title = element_blank())