chk_deprecated {chk} | R Documentation |
Deprecated functions
Description
Deprecated chk_()
functions.
Usage
chk_dirs(x)
chk_files(x)
chk_has(x, values, x_name = NULL)
chk_in(x, values, x_name = NULL)
chk_no_missing(x, x_name = NULL)
vld_no_missing(x)
chk_off()
chk_on()
is_chk_on()
chk_proportion(x, x_name = NULL)
deparse_backtick(x)
Arguments
x |
The object to check. |
x_name |
A string of the name of object x or NULL. |
Functions
-
chk_dirs()
: Check Directories ExistReplace with
[chk_all](x, [chk_dir])
-
chk_files()
: Check Files ExistReplace with
[chk_all](x, [chk_file])
-
chk_has()
: Check HasReplace by
chk_superset()
-
chk_in()
: Check InReplace by
chk_subset()
-
chk_no_missing()
: Check No Missing ValuesReplace with
chk_not_any_na()
-
vld_no_missing()
: Validate No Missing ValuesReplace with
vld_not_any_na()
-
chk_off()
: Turns checking offThis approach is no longer recommended
-
chk_on()
: Turns checking onThis approach is no longer recommended
-
is_chk_on()
: Tests checking onThis approach is no longer recommended
-
chk_proportion()
: Check ProportionReplace by
[chk_number](x); [chk_range](x)
-
deparse_backtick()
: Deparse BacktickReplace with
deparse_backtick_chk()
See Also
Other deprecated:
chk_chr()
,
chk_dbl()
,
chk_wnum()