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

Data - Eurostat

Info

Last observation: Monthly: 2026M06 (N = 17,240)

First observation: Monthly: 2008M01 (N = 2,016)

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

Structure

EU27: Natural Gas Imports by Partner

Russia, Norway, Algeria, United States, Qatar

Code
nrg_ti_gasm %>%
  filter(geo == "EU27_2020",
         siec == "G3000",
         unit == "TJ_GCV",
         partner %in% c("RU", "NO", "DZ", "US", "QA")) %>%
  month_to_date %>%
  mutate(values = values/1000) %>%
  ggplot + geom_line(aes(x = date, y = values, color = Partner)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(2008, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.2, 0.75),
        legend.title = element_blank()) +
  xlab("") + ylab("Natural gas imports (PJ)")

Share of EU27 Total

Code
gas_total <- nrg_ti_gasm %>%
  filter(geo == "EU27_2020",
         siec == "G3000",
         unit == "TJ_GCV",
         partner == "TOTAL") %>%
  month_to_date %>%
  select(date, total = values)

nrg_ti_gasm %>%
  filter(geo == "EU27_2020",
         siec == "G3000",
         unit == "TJ_GCV",
         partner %in% c("RU", "NO", "DZ", "US", "QA")) %>%
  month_to_date %>%
  left_join(gas_total, by = "date") %>%
  mutate(values = values/total) %>%
  ggplot + geom_line(aes(x = date, y = values, color = Partner)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(2008, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.2, 0.75),
        legend.title = element_blank()) +
  xlab("") + ylab("Share of EU27 natural gas imports") +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1))

France, Germany, Italy: Total Natural Gas Imports

Code
nrg_ti_gasm %>%
  filter(geo %in% c("FR", "DE", "IT"),
         siec == "G3000",
         unit == "TJ_GCV",
         partner == "TOTAL") %>%
  month_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_3flags +
  scale_x_date(breaks = as.Date(paste0(seq(2008, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Natural gas imports (PJ)")

Latest Month: EU27 Imports by Partner

Code
latest_m_gas <- nrg_ti_gasm %>%
  filter(geo == "EU27_2020",
         siec == "G3000",
         unit == "TJ_GCV",
         partner == "TOTAL",
         !is.na(values)) %>%
  summarise(m = max(time)) %>%
  pull(m)

nrg_ti_gasm %>%
  filter(geo == "EU27_2020",
         siec == "G3000",
         unit == "TJ_GCV",
         partner %in% c("RU", "NO", "DZ", "US", "QA", "TOTAL"),
         time == latest_m_gas) %>%
  mutate(values = round(values/1000, 1)) %>%
  select(partner, Partner, values) %>%
  arrange(-values) %>%
  print_table_conditional()
partner Partner values
TOTAL Total 1540.8
NO Norway 298.1
US United States 183.5
RU Russia 119.0
DZ Algeria 109.6
QA Qatar 0.0