nomis_codelist {nomisr} | R Documentation |
Nomis codelists
Description
Nomis uses its own internal coding for query concepts. nomis_codelist
returns the codes for a given concept in a tibble
, given a dataset
ID and a concept name.
Note that some codelists, particularly geography, can be very large.
Usage
nomis_codelist(id, concept, search = NULL)
Arguments
id |
A string with the ID of the particular dataset. Must be specified. |
concept |
A string with the variable concept to return options for. If
left empty, returns all the variables for the dataset specified by |
search |
Search for codes that contain a given string. The wildcard
character |
Value
A tibble with the codes used to query specific concepts.
See Also
Examples
x <- nomis_codelist("NM_1_1", "item")
# Searching for codes ending with "london"
y <- nomis_codelist("NM_1_1", "geography", search = "*london")
z <- nomis_codelist("NM_161_1", "cause_of_death")