I have a large nested List with 3 levels: the elements are data frames with the same name.
List:
[[1]]
[[1]][[1]]
[[1]][[1]][[1]]
"name1" "name2" "name3" "name4" "name5"
numeric1 numeric2 string3 string4 string5
[[1]][[1]][[2]]
"name1" "name2" "name3" "name4" "name5"
numeric1 numeric2 string3 string4 string5
[[1]][[1]][[3]]
"name1" "name2" "name3" "name4" "name5"
numeric1 numeric2 string3 string4 string5
How I can rbind all data frames to one large data frame?
manually it works this way: rbind(list[[1]][[1]][[1]], list[[1]][[1]][[2]],....)