List tags
tags(...) tag(name, ...) as.tag(x)
... | Additional options passed down to |
---|---|
name | (character) Name of the tag |
x | Object to coerce to a tag. |
Many tag objects in a list
tags
gets all your tag, tag
gets a tag by name
if (FALSE) { # get all your tags tags() # get a tag by name tag("stuffthings") tag("helloworld") } if (FALSE) { tag_create("pluto") as.tag('pluto') as.tag(tag_create("howdyhoneighbor")) }