| batchExpandGrid {BatchJobs} | R Documentation |
Maps an n-ary-function over a list of all combinations which are given by some vectors.
Internally expand.grid is used to compute the combinations, then
batchMap is called.
batchExpandGrid(reg, fun, ..., more.args = list())
reg |
[ |
fun |
[ |
... |
[any] |
more.args |
[ |
[data.frame]. Expanded grid of combinations produced by expand.grid.
reg = makeRegistry(id = "BatchJobsExample", file.dir = tempfile(), seed = 123) f = function(x, y, z) x * y + z batchExpandGrid(reg, f, x = 1:2, y = 1:3, more.args = list(z = 10)) submitJobs(reg) reduceResultsMatrix(reg, fun = function(job, res) cbind(job$pars, res))