Description Usage Format Source Examples
Country-level statistics from the US Central Intelligence Agency (CIA).
1 | data("cia.factbook")
|
A data frame with 259 observations on the following 11 variables.
countryCountry name.
areaLand area, in square kilometers. (1 square kilometer is 0.386 square miles
birth_rateBirth rate, in births per 1,000 people.
death_rateDeath rate, in deaths per 1,000 people.
infant_mortality_rateInfant mortality, in deaths per 1,000 live births.
internet_usersTotal number of internet users.
life_exp_at_birthLive expectancy at birth, in years.
maternal_mortality_rateNumber of female deaths per 100,000 live births where the death is related to pregnancy or birth.
net_migration_rateNet migration rate.
populationTotal population.
population_growth_ratePopulation growth rate.
CIA Factbook, Country Comparisons, 2014. https://www.cia.gov/library/publications/the-world-factbook/rankorder/rankorderguide.html
1 2 3 4 | data(cia.factbook)
cia.factbook$internet.users.percent <-
100 * cia.factbook$internet_users / cia.factbook$population
plot(cia.factbook$internet.users.percent, cia.factbook$life_exp_at_birth)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.