Skip to content

Instantly share code, notes, and snippets.

@felixhaass
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felixhaass/10a23fedd5d107741965 to your computer and use it in GitHub Desktop.
Save felixhaass/10a23fedd5d107741965 to your computer and use it in GitHub Desktop.
Population Development of Bosnia and Herzegovina
library(dplyr)
library(countrycode)
WDI("BA", indicator = c("SP.POP.TOTL"), start = 1975, end = 2011) %>%
select(year, SP.POP.TOTL) %>%
plot(., xlab = "", ylab = "",
main = "Population Development of Bosnia and Herzegovina")
mtext("Source: World Bank", side = 1, line = 3, adj = 1, cex = .6)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment