View source: R/lost_tags_action.R
lost_tags_action | R Documentation |
This function determines the behaviour to adopt when tagged variables of a
linelist
are lost e.g. through subsetting. This is achieved using options
defined for the linelist
package.
lost_tags_action(action = c("warning", "error", "none"), quiet = FALSE, x)
get_lost_tags_action()
action |
a |
quiet |
a |
x |
deprecated |
The errors or warnings generated by linelist in case of tagged
variable loss has a custom class of linelist_error
and linelist_warning
respectively.
returns NULL
; the option itself is set in options("linelist")
# reset default - done automatically at package loading
lost_tags_action()
# check current value
get_lost_tags_action()
# change to issue errors when tags are lost
lost_tags_action("error")
get_lost_tags_action()
# change to ignore when tags are lost
lost_tags_action("none")
get_lost_tags_action()
# reset to default: warning
lost_tags_action()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.