parallelLapply {parallelMap} | R Documentation |
Parallel versions of apply-family functions.
Description
parallelLapply
: A parallel lapply()
version.
parallelSapply
: A parallel sapply()
version.
All functions are simple wrappers for parallelMap()
.
Usage
parallelLapply(xs, fun, ..., impute.error = NULL, level = NA_character_)
parallelSapply(
xs,
fun,
...,
simplify = TRUE,
use.names = TRUE,
impute.error = NULL,
level = NA_character_
)
Arguments
xs |
( |
fun |
|
... |
(any) |
impute.error |
( |
level |
( |
simplify |
( |
use.names |
( |
Value
For parallelLapply
a named list, for parallelSapply
it depends
on the return value of fun
and the settings of simplify
and
use.names
.
[Package parallelMap version 1.5.1 Index]