Description Usage Arguments Value Examples
A wrapper for a do.call('rbind', lapply(X, FUN)).
1 | lapply_rbind(X, FUN = function(x) { x })
|
X |
A list. |
FUN |
A function. |
A matrix or a data.frame, depending on the objects in X.
1 2 | lapply_rbind( list(a = c(1,2), b =c(3,4)), sum)
lapply_rbind( as.list(cars), function(x) mean(x))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.