powered by
unnest(x)
# a nested list mylist <- list(); inerlist <- list() for(i in 1:5) { for(j in 1:5) { mylist[[j]] <- i*j } inerlist[[i]] <- mylist } # Unnest the list unnest(inerlist)[[1]]
Run the code above in your browser using DataLab