Description Usage Arguments Value Functions Examples
Note that this does not work in place. See examples
1 2 3 | add_checks(cf, ...)
delete_check(cf, check_name)
|
cf |
a CanonicalForm object |
... |
named arguments. Each name will be the name of the check, and each value should be a check function |
check_name |
the name of the check to delete |
modified CanonicalForm object
delete_check
: Delete a check
1 2 3 4 5 6 | cf <- extract_canonical_form(cars)
check <- function(x) TRUE
cf <- add_checks(cf, new_check = check) # note this does not work in place
print(get_check_names(cf))
cf <- delete_check(cf, "new_check")
print(get_check_names(cf))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.