lst <- list(letters[1:3], letters[4:6], letters[7:9])
do.call("rbind", lst) # results in matrix
list2df(lst) # results in data.frame created using rbind()
list2df(lst, bind = "cols") # same for cbind()
Run the code above in your browser using DataLab