list_census_regions
to a list suitable for passing to
get_census
.R/census_regions.R
as_census_region_list.Rd
Convert a (suitably filtered) data frame from
list_census_regions
to a list suitable for passing to
get_census
.
as_census_region_list(tbl)
A data frame, suitably filtered, as returned by
list_census_regions
.
if (FALSE) {
library(dplyr, warn.conflicts = FALSE)
# Query the CensusMapper API for the total occupied dwellings
# of 20 random Census Subdivisions, in Census 2016.
regions <- list_census_regions("CA16") %>%
filter(level == "CSD") %>%
sample_n(20) %>%
as_census_region_list()
occupied <- get_census("CA16", regions = regions,
vectors = c("v_CA16_408"),
level = "Regions")
}