powered by
NULL
This is a simple function that removes null values from the input list before applying rbindlist.
null
rbindlist
rbindlist2(x, ...)
a list that is appropriate for input to rbindlist, but may include NULLs, which will be filtered.
passed directly to rbindlist.
a data.table,data.frame object.
data.table,data.frame
# NOT RUN { input = list(list(a=1,b=2,d='only this row'), NULL, list(a=3,b=4)) rbindlist2(input) # }
Run the code above in your browser using DataLab