util_rbindlist {nhlapi} | R Documentation |
rbind
multiple data.framesAttempts to replace do.call(rbind, lst)
taking into consideration that some data frames in
lst
can have missing columns. Those are filled by
NA
values.
util_rbindlist(lst, fill = TRUE)
lst |
|
fill |
|
data.frame
, the elements of lst
, rbind
-ed into one.
nhlapi:::util_rbindlist(list(
datasets::mtcars[1, 2:3],
datasets::mtcars[2, 4:5]
))