ext_lt_intertrd %>%
filter(geo %in% c("DE", "FR", "ES", "IT", "NL"),
partner == "WORLD",
# B1GQ: Gross domestic product at market prices
indic_et == "MIO_EXP_VAL",
sitc06 == "TOTAL") %>%
left_join(geo, by = "geo") %>%
left_join(world_exports, by = "time") %>%
mutate(Geo = ifelse(geo == "EU27_2020", "Europe", Geo)) %>%
year_to_date %>%
left_join(colors, by = c("Geo" = "country")) %>%
mutate(color = ifelse(geo == "NL", color2, color)) %>%
mutate(values = values/world_exports) %>%
ggplot + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_5flags + xlab("") +
ylab("Part des exportations dans les exportations de la Zone € (%)") +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2025, 1), "-01-01")),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(0, 100, 1),
labels = percent_format(acc = 1))