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

Data - Eurostat

Info

Last observation: 2026M07 (N = 8600)

First observation: 2008M01 (N = 2016)

Last data update: 15 aoû 2026, 23:17. Last compile: 18 aoû 2026, 03:20

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_flags +
  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 1418.8
NO Norway 311.2
US United States 151.8
DZ Algeria 110.2
RU Russia 55.5
QA Qatar 0.0