10 Sustainable Development Goals
Libraries used in this chapter.
10.2 Employment in high technology sector
sdg_09_20 %>%
inner_join(EU_countries) %>%
filter(nace_r2 == 'C_HTC_MH') %>%
filter(geo %in% c('LT', 'LV', 'EE')) %>%
mutate(LBL = if_else(time == max(time), as.character(Country), NA_character_)) %>%
ggplot(aes(x = time, y = values, colour = Country)) +
geom_line(size = 1.2) +
geom_point(size = 3) +
labs(x = "Time", y = "% of employment",
title = "Baltic countries",
subtitle = "Employment in high- and medium-high technology manufacturing and knowledge-intensive services") +
scale_x_continuous(breaks = seq(2006, 2020, by = 2)) +
scale_y_continuous(limits = c(0, 5), breaks = seq(0, 5, by = 1)) +
scale_color_brewer(type = "qual", palette = 6) +
geom_label_repel(aes(label = LBL), nudge_x = 0, nudge_y = 0.25, size = 5, na.rm = TRUE) +
theme_minimal(base_size = 16) +
theme(legend.position = "none")