Attempts 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.
Usage
util_rbindlist(lst, fill = TRUE)
Arguments
lst
list(), of data frames to be rbind-ed into one.
fill
logical(1), if FALSE, this function just
returns do.call(rbind, lst).
Value
data.frame, the elements of lst, rbind-ed into one.