I have a nested list dt_list, which contains in itself lists: dt_list1, dt_list2, dt_list3.
Each of these three lists contains data tables with same names: dt1, dt2, dt3. So I can get dt1 of dt_list1 like this:
dt_list[["dt_list1"]][["dt1"]]
It will give data table:
ID timestamp type
AA 2020-10-01 user
A1 2020-10-01 administrator
BA 2020-10-01 user
and
dt_list[["dt_list2"]][["dt1"]]
will give:
ID timestamp type
KB 2020-10-02 new_user
AA 2020-10-02 administrator
BB 2020-10-02 user
I want to bind columns ID and type to get:
ID type
AA user
A1 administrator
BA user
KB new_user
AA administrator
BB user
I want to bind like that all "dt1" data tables from all three sublists dt_list1, dt_list2, dt_list3 using data.table::rbindlist() function. Binding two of them can be done like this:
data.table::rbindlist(list(dt_list[["dt_list1"]][["dt1"]], dt_list[["dt_list2"]][["dt1"]]))
It will bind two necessary dataframes. But I want to bind all three with iteration, not one by one (because there can be not three sublists, but 20 and one by one is not efficient in that case). I think a function which will bind all data tables dt1 from all sublists is the best solution. data.table library must be used for that
question from:
https://stackoverflow.com/questions/65902065/how-to-bind-data-tables-from-lists-in-nested-list 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…