Euro area19 trade by SITC product group since 1999 - ext_st_easitc

Data - Eurostat

Info

Last observation: 2026M06 (N = 21173)

First observation: 2002M01 (N = 13845)

Last data update: 14 aoû 2026, 22:25. Last compile: 18 aoû 2026, 00:54

Structure

Euro Area Trade with Extra-EA Partners

Exports vs. Imports

Code
ext_st_easitc |>
  filter(partner == "EXT_EA21",
         sitc06 == "TOTAL",
         stk_flow %in% c("EXP", "IMP"),
         indic_et == "TRD_VAL_SCA") |>
  month_to_date() |>
  mutate(values = values/1000) |>
  ggplot() + geom_line(aes(x = date, y = values, color = Stk_flow)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(2000, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.2, 0.85),
        legend.title = element_blank()) +
  xlab("") + ylab("Euro area trade with extra-EA21 (Bn€, s.a.)")

Trade Balance

Code
ext_st_easitc |>
  filter(partner == "EXT_EA21",
         sitc06 == "TOTAL",
         stk_flow == "BAL_RT",
         indic_et == "TRD_VAL_SCA") |>
  month_to_date() |>
  mutate(values = values/1000) |>
  ggplot() + geom_line(aes(x = date, y = values)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(2000, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Euro area trade balance with extra-EA21 (Bn€, s.a.)") +
  geom_hline(yintercept = 0, linetype = "dashed", color = "black")

Latest Month by Product Group

Code
latest_m <- ext_st_easitc |>
  filter(partner == "EXT_EA21",
         stk_flow == "EXP",
         indic_et == "TRD_VAL_SCA",
         sitc06 == "TOTAL",
         !is.na(values)) |>
  summarise(m = max(time)) |>
  pull(m)

ext_st_easitc |>
  filter(partner == "EXT_EA21",
         indic_et == "TRD_VAL_SCA",
         stk_flow %in% c("EXP", "IMP"),
         sitc06 != "TOTAL",
         time == latest_m) |>
  mutate(values = values/1000) |>
  select(sitc06, Sitc06, Stk_flow, values) |>
  spread(Stk_flow, values) |>
  arrange(-Exports) |>
  print_table_conditional()
sitc06 Sitc06 Exports Imports
SITC5-8 Manufactured goods 207.6954 180.6017
SITC7 Machinery and transport equipment 100.5918 91.8266
SITC6_8 Other manufactured goods 56.2383 56.8015
SITC5 Chemicals and related products, n.e.s. 50.8652 31.9736
SITC8 Miscellaneous manufactured articles 29.8929 32.7476
SITC6 Manufactured goods classified chiefly by material 26.3454 24.0539
SITC0_1 Food, drinks and tobacco 20.3589 17.6479
SITC0 Food and live animals 16.4747 15.8861
SITC3 Mineral fuels, lubricants and related materials 13.2491 39.7739
SITC9 Commodities and transactions not classified elsewhere in the SITC 9.5949 7.5247
SITC2_4 Raw materials 6.6602 10.1690
SITC2 Crude materials, inedible, except fuels 5.6973 8.6223
SITC1 Beverages and tobacco 3.8843 1.7618
SITC4 Animal and vegetable oils, fats and waxes 0.9629 1.5468