Imports of natural gas by partner country - monthly data - nrg_ti_gas

Data - Eurostat

Info

Last observation: Annual: 2024 (N = 27,388)

First observation: Annual: 1990 (N = 25,740)

Last data update: 23 jul 2026, 23:01. Last compile: 24 jul 2026, 03:13

Structure

EU Natural Gas Imports, by Partner

Russia, Norway, Algeria, Qatar, United States

Code
nrg_ti_gas %>%
  filter(geo == "EU27_2020",
         siec == "G3000",
         unit == "TJ_GCV",
         partner %in% c("RU", "NO", "DZ", "QA", "US")) %>%
  year_to_date %>%
  mutate(values = values/1e6) %>%
  ggplot + geom_line(aes(x = date, y = values, color = Partner)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(1990, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = "right") +
  xlab("") + ylab("Natural gas imports (Million TJ, GCV)")

Total EU Imports

Code
nrg_ti_gas %>%
  filter(geo == "EU27_2020",
         siec == "G3000",
         unit == "TJ_GCV",
         partner == "TOTAL") %>%
  year_to_date %>%
  mutate(values = values/1e6) %>%
  ggplot + geom_line(aes(x = date, y = values)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(1990, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Total natural gas imports (Million TJ, GCV)")

unit