Invisibly returns a list of objects, where each object is the output of the user-supplied function
applied to a batch
Arguments
tbl
An Andromeda table (or any other 'DBI' table).
fun
A function where the first argument is a data frame.
...
Additional parameters passed to fun.
batchSize
Number of rows to fetch at a time.
progressBar
Show a progress bar?
safe
Create a copy of tbl first? Allows writing to the same Andromeda as being
read from.
Details
This function is similar to the lapply() function, in that it applies a function to sets of
data. In this case, the data is batches of data from an Andromeda table. Each batch will be
presented to the function as a data frame.