i get some list data(as follow) and want to change them into dataframe/matrix in R
length(df[[1]][[1]])
# [1] 11
length(df[[1]])
# [1] 20
length(df)
# [1] 423
and i want to change them into a dataframe/matrix with structure ncol = 11, nrow=8460(423*20),how to do that with R? Thx!