Export market shares (BPM6) - bop_exms6_q

Data - Eurostat

Info

Last observation: Annual: 2025 (N = 936)

First observation: Annual: 1991 (N = 6)

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

Structure

Percentage of world total - PC_WRL

Goods and Services

Code
bop_exms6_q |>
  filter(geo %in% c("FR", "DE", "IT", "ES", "NL"),
         unit == "PC_WRL",
         bop_item == "GS") |>
  
  year_to_date() |>
  mutate(values = values / 100) |>
  left_join(colors, by = c("Geo" = "country")) |>
  mutate(color = ifelse(geo == "NL", color2, color)) |>
  ggplot() + geom_line(aes(x = date, y = values, color = color)) +
  scale_color_identity() + theme_minimal()  + xlab("") + 
  ylab("Goods and Services, Market Share (% of World Total)") + add_flags +
  scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.75, 0.8),
        legend.title = element_blank()) +
  scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
                labels = percent_format(a = 1))

Goods

Code
bop_exms6_q |>
  filter(geo %in% c("FR", "DE", "IT", "ES", "EU27_2020"),
         unit == "PC_WRL",
         bop_item == "G") |>
  
  year_to_date() |>
  filter(date >= as.Date("1995-01-01")) |>
  mutate(values = values / 100) |>
  mutate(Geo = ifelse(geo == "EU27_2020", "Europe", Geo)) |>
  left_join(colors, by = c("Geo" = "country")) |>
  mutate(color = ifelse(geo == "NL", color2, color)) |>
  ggplot() + geom_line(aes(x = date, y = values, color = color)) +
  scale_color_identity() + theme_minimal()  + xlab("") + 
  ylab("Biens, Parts de Marché (% du Monde)") + add_flags +
  scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.75, 0.8),
        legend.title = element_blank()) +
  scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
                labels = percent_format(a = 1))

Services

Code
bop_exms6_q |>
  filter(geo %in% c("FR", "DE", "IT", "ES", "NL"),
         unit == "PC_WRL",
         bop_item == "S") |>
  
  year_to_date() |>
  mutate(values = values / 100) |>
  left_join(colors, by = c("Geo" = "country")) |>
  mutate(color = ifelse(geo == "NL", color2, color)) |>
  ggplot() + geom_line(aes(x = date, y = values, color = color)) +
  scale_color_identity() + theme_minimal()  + xlab("") + 
  ylab("Goods, Market Share (% of World Total)") + add_flags +
  scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.75, 0.8),
        legend.title = element_blank()) +
  scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
                labels = percent_format(a = 1))

All

France

Code
bop_exms6_q |>
  filter(geo == "FR",
         unit == "PC_WRL") |>
  
  year_to_date() |>
  mutate(values = values / 100) |>
  ggplot() + geom_line(aes(x = date, y = values, color = Bop_item)) +
  scale_color_manual(values = viridis(4)[1:3]) +
  theme_minimal()  + xlab("") + ylab("") +
  scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.75, 0.8),
        legend.title = element_blank()) +
  scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
                labels = percent_format(a = 1))

Germany

Code
bop_exms6_q |>
  filter(geo == "DE",
         unit == "PC_WRL") |>
  
  year_to_date() |>
  mutate(values = values / 100) |>
  ggplot() + geom_line(aes(x = date, y = values, color = Bop_item)) +
  scale_color_manual(values = viridis(4)[1:3]) +
  theme_minimal()  + xlab("") + ylab("") +
  scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.75, 0.8),
        legend.title = element_blank()) +
  scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
                labels = percent_format(a = 1))

Italy

Code
bop_exms6_q |>
  filter(geo == "IT",
         unit == "PC_WRL") |>
  
  year_to_date() |>
  mutate(values = values / 100) |>
  ggplot() + geom_line(aes(x = date, y = values, color = Bop_item)) +
  scale_color_manual(values = viridis(4)[1:3]) +
  theme_minimal()  + xlab("") + ylab("") +
  scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.75, 0.8),
        legend.title = element_blank()) +
  scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
                labels = percent_format(a = 1))