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

Data - Eurostat

Info

Last observation: 2024 (N = 27388)

First observation: 1990 (N = 25740)

Last data update: 14 aoû 2026, 22:23. Last compile: 18 aoû 2026, 03:20

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