Non-household consumption volumes of gas by consumption bands

Data - Eurostat

Info

Last observation: Annual: 2025 (N = 187)

First observation: Annual: 2017 (N = 158)

Last data update: 23 jul 2026, 22:12. Last compile: 24 jul 2026, 03:12

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())