Save bulk tasks
bulk_task_save(
X,
FUN,
context,
DOTS = NULL,
do_call = FALSE,
use_names = TRUE,
envir = parent.frame(),
depends_on = NULL
)
Something to iterate over; a vector, list or data.frame (in the case of a data.frame, iteration will be row-by-row)
A function to apply to each element (or row) of
X
A context
Additional arguments to apply with each elements of
X
Treat each element of X
as a do.call
call
When preparing a data.frame, retain column names
as argument names when using do_call
. If FALSE
then positional matching will be used.
An environment to find variables local to the expression
Optional task ids that this task depends on. To have all tasks depend on the same id(s) provide a vector. TO provide different dependencies for each task provide a list of lists. For example list(list("abcde", "12345"), list(), list("12345"))