tags {linelist} | R Documentation |
Get the list of tags in a linelist
Description
This function returns the list of tags identifying specific variable types in
a linelist
.
Usage
tags(x, show_null = FALSE)
Arguments
x |
a |
show_null |
a |
Details
Tags are stored as the tags
attribute of the object.
Value
The function returns a named list
where names indicate generic
types of data, and values indicate which column they correspond to.
Examples
if (require(outbreaks)) {
## make a linelist
x <- make_linelist(measles_hagelloch_1861, date_onset = "date_of_prodrome")
## check non-null tags
tags(x)
## get a list of all tags, including NULL ones
tags(x, TRUE)
}
[Package linelist version 2.0.1 Index]