chk_term {term} | R Documentation |
Check Term or Term Record
Description
Checks if term using vld_term()
or vld_term_rcrd()
.
Usage
chk_term(x, validate = "complete", x_name = NULL)
chk_term_rcrd(x, validate = "complete", x_name = NULL)
Arguments
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. |
Value
NULL
, invisibly. Called for the side effect of throwing an error
if the condition is not met.
Functions
-
chk_term_rcrd()
: Check Term Record
Examples
# 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"))
[Package term version 0.3.5 Index]