verboseApply {dat} | R Documentation |
Verbose apply function
Description
This apply function has a progress bar and enables computations in parallel. By default it is not verbose. As an interactive version with proper 'verbose' output by default please use vmap.
Usage
verboseApply(x, f, ..., .mc = 1, .mapper = mclapply, .bar = "none")
Arguments
x |
(vector) |
f |
(function) |
... |
arguments passed to |
.mc |
(integer) the number of processes to start |
.mapper |
(function) the actual apply function used. Should have an
argument |
.bar |
(character) one in 'none', '.' or 'bar' |
Examples
## Not run:
verboseApply(
1:4,
function(...) Sys.sleep(1),
.bar = "bar",
.mc = 2
)
## End(Not run)
[Package dat version 0.5.0 Index]