I have set of vector in the list. I want to cast my list to data.frame object for fast manipulation. There is already solution for casting list to data.frame in this site. However, I tried this solution, it works good but format is bit of mass, not perfectly formatted. Can anyone propose any idea to make casting result more clean/ elegant? How can make this happen efficiently ?
mini example
myList <- list(
a = c(1,2,3,4,5,6,7),
b = c(1,1,1,2,0,3,4),
c = c(1,2,4,4,5,0,6)
)
I used following solution:
do.call(rbind, lapply(myList, data.frame, stringsAsFactors=FALSE))
my desired output
output <- data.frame(
a = c(1,2,3,4,5,6,7),
b = c(1,1,1,2,0,3,4),
c = c(1,2,4,4,5,0,6))
How can I get my expected output? Thanks a lot