Skip to contents

Retrieve a sorted list of unique Middle layer Super Output Area id's, limited to a maximum of msoa_lim if it is provided.

Usage

get_area_id_list(area_ids, msoa_lim = NULL)

Arguments

area_ids

The area id's as a character vector.

msoa_lim

The maximum number of area id's to return, or NA for all of them. Default: NA

Value

The sorted unique area id's, limited to msoa_lim if it is supplied.

Examples

if (FALSE) { # \dontrun{
pop_dat <- get_pop_dat()
# Get the first 5 unique area id's
get_area_id_list(pop_dat$area_id, 5)
} # }