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