get_idb: Get Data from the US Census Bureau's International Data Base...

Description Usage Arguments Value Examples

View source: R/get_idb.R

Description

Get Data from the US Census Bureau's International Data Base API

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
get_idb(
  country,
  year,
  variables = NULL,
  concept = NULL,
  age = NULL,
  sex = NULL,
  geometry = FALSE,
  resolution = c("low", "high"),
  api_key = NULL
)

Arguments

country

A country name or vector of country names. Can be specified as ISO-2 codes as well. Use country = "all" to request all countries available in the IDB.

year

A single year or vector of years for which you'd like to request data.

variables

A character string or vector of variables representing data you would like to request. If you are specifying an age or sex subset, this should be kept as NULL as the function will return data from the 1-year-of-age IDB API. If filtering by age or sex, should be NULL.

concept

Variables in the IDB are organized by concepts; if specified, request all variables for a given concept. Use idb_concepts() to view available concepts.

age

A vector of ages for which you would like to request population data. If specified, will return data from the 1-year-age-band IDB API. Should not be used when variables is not NULL.

sex

One or more of "both", "male", or "female". If specified, will return data from the 1-year-age-band IDB API. Should not be used when variables is not NULL.

geometry

If TRUE, returns country simple feature geometry along with your data which can be used for mapping. Geometry is obtained using the rnaturalearthdata R package.

resolution

one of "low" for lower-resolution (less-detailed) geometry, or #' "high" for more detailed geometry. It is recommended to use the low- resolution geometries for smaller-scale (e.g. world) mapping, and the higher-resolution geometries for medium-scale (e.g. regional) mapping.

api_key

Your Census API key. Can be supplied as part of the function call or set globally with the idb_api_key() function. If you are a tidycensus user with your API key already stored, get_idb() will pick up the API key from there, and no further action from you is required.

Value

A tibble or sf tibble of data from the International Data Base API.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
## Not run: 
# Get data from the 1-year-age-band dataset by sex for China from
# 1990 through 2021

library(idbr)

china_data <- get_idb(
  country = "China",
  year = 1990:2021,
  age = 1:100,
  sex = c("male", "female")
 )

# Get data on life expectancy at birth for all countries in 2021 and
# make a map with ggplot2

library(idbr)
library(tidyverse)

lex <- get_idb(
  country = "all",
  year = 2021,
  variables = c("name", "e0"),
  geometry = TRUE
)
ggplot(lex, aes(fill = e0)) +
  theme_bw() +
  geom_sf() +
  coord_sf(crs = 'ESRI:54030') +
  scale_fill_viridis_c() +
  labs(fill = "Life expectancy at birth (2021)")

## End(Not run)

idbr documentation built on April 12, 2021, 1:07 a.m.