filterResults {BatchJobs} | R Documentation |
Find all results where a specific condition is true.
Description
Find all results where a specific condition is true.
Usage
filterResults(reg, ids, fun, ...)
Arguments
reg |
[ |
ids |
[ |
fun |
[ |
... |
[any] |
Value
[integer
]. Ids of jobs where fun(job, result)
returns TRUE
.
Examples
reg = makeRegistry(id = "BatchJobsExample", file.dir = tempfile(), seed = 123)
f = function(x) x^2
batchMap(reg, f, 1:10)
submitJobs(reg)
waitForJobs(reg)
# which square numbers are even:
filterResults(reg, fun = function(job, res) res %% 2 == 0)
[Package BatchJobs version 1.9 Index]