nomis_content_type {nomisr} | R Documentation |
Nomis dataset content types
Description
Nomis content type metadata is included in annotation tags, in the form of
contenttype/<contenttype>
in the annotationtitle
column in
the annotations.annotation
list-column returned from
nomis_data_info()
. For example, the content types returned from
dataset "NM_1658_1", using nomis_data_info("NM_1658_1")
, are
"geoglevel", "2001census" and "sources".
Usage
nomis_content_type(content_type, id = NULL)
Arguments
content_type |
A string with the content type to return metadata on. |
id |
A string with an optional |
Value
A tibble with metadata on a given content type.
See Also
Examples
a <- nomis_content_type("sources")
tibble::glimpse(a)
b <- nomis_content_type("sources", id = "census")
tibble::glimpse(b)
[Package nomisr version 0.4.7 Index]