.checkColumnValuesList applies the .checkColumnValuesDF function to a list of bugphyzz datasets.

.checkColumnValuesList(list, table = TRUE)

Arguments

list

A list of bugphyzz datasets.

table

If TRUE (default), it returns a table instead of a list.

Value

Invisibly returns a list of error conditions (subclass "invalid_column_values"), and it also prints an error message if a column contains invalid values in any of the datasets in the list. If no errors are found, it returns NULL and prints a message indicating it (per datasest). If table = TRUE, it returns a tibble of errors.

Examples


if (FALSE) {

x <- physiologies()
list_of_errors <- bugphyz:::.checkColumnValuesList(x)
list_of_errors

}