These functions are the tuned counterparts of qtest,
qassert and qexpect tailored for recursive
checks of list elements or data frame columns.
[list or data.frame]
List or data frame to check for compliance with at least one of rules.
See details of qtest for rule explanation.
[character]
Set of rules. See qtest
[character(1)]
Name of the checked object to print in error messages. Defaults to
the heuristic implemented in vname.
[integer(1)]
Maximum recursion depth. Defaults to “1” to directly check list elements or
data frame columns. Set to a higher value to check lists of lists of elements.
[character(1)]
Extra information to be included in the message for the testthat reporter.
See expect_that.
[character(1)]
Name of the checked object to print in messages. Defaults to
the heuristic implemented in vname.
See qassert.
# All list elements are integers with length >= 1?
qtestr(as.list(1:10), "i+")
#> [1] TRUE
# All list elements (i.e. data frame columns) are numeric?
qtestr(iris, "n")
#> [1] FALSE
# All list elements are numeric, w/o NAs?
qtestr(list(a = 1:3, b = rnorm(1), c = letters), "N+")
#> [1] FALSE
# All list elements are numeric OR character
qtestr(list(a = 1:3, b = rnorm(1), c = letters), c("N+", "S+"))
#> [1] TRUE