sc_cols_bounded_below {sanityTracker} | R Documentation |
Checks that all elements from the given columns are above a certain number
Description
Checks that all elements from the given columns are above a certain number
Usage
sc_cols_bounded_below(
object,
cols,
lower_bound,
include_lower_bound = TRUE,
...
)
Arguments
object |
table with a columns specified by |
cols |
vector of characters of columns that are checked against the specified range |
lower_bound |
elements of the specified columns must be above this bound |
include_lower_bound |
if TRUE (default), elements are allowed to be
equal to the |
... |
further parameters that are passed to add_sanity_check. |
Value
list of logical vectors where TRUE indicates where the check failed. Every list entry represents one of the columns specified in cols. This might be helpful if one wants to apply a counter-measure
Examples
d <- data.frame(a = c(0, 0.2, 3, Inf), b = c(1:4))
dummy_call <- function(x) {
sc_cols_bounded_below(
object = d, cols = c("a", "b"),
lower_bound = 0.2,
include_lower_bound = FALSE,
description = "Measurements are expected to be bounded from below")
}
dummy_call(x = d)
get_sanity_checks()
[Package sanityTracker version 0.1.0 Index]