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.
country
Country name.
area
Land area, in square kilometers. (1 square kilometer is 0.386 square miles
birth_rate
Birth rate, in births per 1,000 people.
death_rate
Death rate, in deaths per 1,000 people.
infant_mortality_rate
Infant mortality, in deaths per 1,000 live births.
internet_users
Total number of internet users.
life_exp_at_birth
Live expectancy at birth, in years.
maternal_mortality_rate
Number of female deaths per 100,000 live births where the death is related to pregnancy or birth.
net_migration_rate
Net migration rate.
population
Total population.
population_growth_rate
Population 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.