R/Operations.R
batchTest.Rd
Apply a boolean test to batches of data in an Andromeda table and terminate early
batchTest(tbl, fun, ..., batchSize = 1e+05)
An Andromeda
table (or any other 'DBI' table).
A function where the first argument is a data frame and returns a logical value.
Additional parameters passed to fun
.
Number of rows to fetch at a time.
Returns FALSE
if any of the calls to the user-supplied function returned FALSE
, else returns TRUE
.
This function applies a boolean test function to sets of
data and terminates at the first FALSE
.