myldply | R Documentation |
A 'dplyr'-friendly equivalent to the old 'plyr::ldply()'
myldply(ll, fn, ..., .id = NULL)
ll |
a list of objects to which to apply a function |
fn |
the function to apply |
... |
extra arguments passed to |
.id |
if not |
Hard work of combining results is done under the hood by dplyr::bind_rows()
; consult that
function's documentation to see how incomplete rows, missing columns, conflicting data types, etc. are handled.
a tibble
with concatenated results of applying fn()
to each element of ll
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.