Description Usage Arguments Value Examples
Uses mclapply, so works where fork() can be called.
1  | 
f | 
 A function to apply.  | 
... | 
 Named vector-like inputs.  | 
A data frame with column names equal to names(list(...)) and
the name of f.
1 2 3 4 5  | test_func <- function(alpha, beta) {
  alpha^2 + beta
}
factorial_parallel_apply(test_func, alpha = 1:3, beta = 1:10)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.