I get some data frames with different dimensions from a loop. I would like to save each of these data frames as a list into a big nested list. How can I do it?
Here, I have written a simple incomplete example.
List_a = list()
List_b = list()
for (i in 1: length(x)) {
list_a [[i]] = W #After some calculations I will reach "W" which is data frame
List_b = cbind(List_b, List1[[i]]) #how should I write this line?
}
return(List_b)