| chk_term | R Documentation |
Checks if term using vld_term() or vld_term_rcrd().
chk_term(x, validate = "complete", x_name = NULL) chk_term_rcrd(x, validate = "complete", x_name = NULL)
x |
The object. |
validate |
A string specifying the level of the validation. The possible values in order of increasing strictness are 'class', 'valid', 'consistent' and 'complete'. |
x_name |
A string of the name of object x or NULL. |
NULL, invisibly. Called for the side effect of throwing an error
if the condition is not met.
chk_term_rcrd(): Check Term Record
# chk_term
x <- term("x[2]", "x[1]")
chk_term(x)
x <- c("x[2]", "x[1]")
try(chk_term(x, validate = "sorted"))
# chk_term_rcrd
x <- term_rcrd("x[2]", "x[1]")
chk_term_rcrd(x)
x <- c("x[2]", "x[1]")
try(chk_term_rcrd(x, validate = "sorted"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.