Export market shares - 5 years % change - tipsex10
Data - Eurostat
Info
Last observation: Annual: 2025 (N = 87)
First observation: Annual: 1997 (N = 18)
Last data update: 23 jul 2026, 22:51. Last compile: 24 jul 2026, 04:03
Structure
bop_item
Code
tipsex10 %>%
select_if(~n_distinct(.) > 1) %>%
group_by(bop_item, Bop_item) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
print_table_conditional()| bop_item | Bop_item | Nobs |
|---|---|---|
| G | Goods | 709 |
| GS | Goods and services | 709 |
| S | Services | 709 |
France, Germany, Italy, Spain, Netherlands
Goods
Code
tipsex10 %>%
filter(geo %in% c("FR", "DE", "NL", "ES", "IT"),
bop_item == "G") %>%
year_to_date %>%
left_join(colors, by = c("Geo" = "country")) %>%
mutate(values = values/100) %>%
mutate(color = ifelse(geo == "NL", color2, color)) %>%
ggplot + geom_line(aes(x = date, y = values, color = color)) + theme_minimal() +
scale_color_identity() + add_5flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Export market shares - 5 years % change - Goods") +
scale_y_continuous(breaks = 0.01*seq(-300, 200, 5),
labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = -0.06, linetype = "dashed")
Services
Code
tipsex10 %>%
filter(geo %in% c("FR", "DE", "NL", "ES", "IT"),
bop_item == "S") %>%
year_to_date %>%
left_join(colors, by = c("Geo" = "country")) %>%
mutate(values = values/100) %>%
mutate(color = ifelse(geo == "NL", color2, color)) %>%
ggplot + geom_line(aes(x = date, y = values, color = color)) + theme_minimal() +
scale_color_identity() + add_5flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Export market shares - 5 years % change - Services") +
scale_y_continuous(breaks = 0.01*seq(-300, 200, 5),
labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = -0.06, linetype = "dashed")
Goods & Services
Code
tipsex10 %>%
filter(geo %in% c("FR", "DE", "NL", "ES", "IT"),
bop_item == "GS") %>%
year_to_date %>%
left_join(colors, by = c("Geo" = "country")) %>%
mutate(values = values/100) %>%
mutate(color = ifelse(geo == "NL", color2, color)) %>%
ggplot + geom_line(aes(x = date, y = values, color = color)) + theme_minimal() +
scale_color_identity() + add_5flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Export market shares - 5 years % change - Goods, Services") +
scale_y_continuous(breaks = 0.01*seq(-300, 200, 5),
labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = -0.06, linetype = "dashed")