Interactive and static plots for Agricultural Value added per Worker from 1991 to 2017.
regional_value %>%
group_by(Region) %>%
mutate(Valueaddedperworker = round(Valueaddedperworker, 2),
Year = paste(Year, "12", "31", sep="-")) %>%
e_charts(x = Year) %>%
e_river(serie = Valueaddedperworker, legend = FALSE) %>%
e_tooltip(trigger = "axis") %>%
e_title(text = "Annual Aggriculture Value Added per Worker",
subtext = "Source: Our World in Data",
sublink = "https://ourworldindata.org/grapher/agriculture-value-added-per-worker-wdi",
left = "center") %>%
e_theme("roma")
regional_value %>%
ggplot(aes(x = Year, y = Valueaddedperworker,
fill = Region)) +
geom_area() +
colorspace::scale_fill_discrete_divergingx(palette = "roma", nmax = 12) +
theme_classic() +
theme(legend.position = "bottom") +
labs( y = "Value Added per Worker (in dollars)",
fill = NULL)
These plots show a steady increase in value added per worker (besides in Liberia where it has stayed pretty stagnent) since 2000. The value added per worker has continued to increase.