powered by
unnest(x)
# Unnest the list # 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(inerlist)[[1]] unnest(inerlist)
Run the code above in your browser using DataLab