Last active
August 29, 2015 14:14
-
-
Save felixhaass/10a23fedd5d107741965 to your computer and use it in GitHub Desktop.
Population Development of Bosnia and Herzegovina
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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