I have multiple lists similar to those below.
a = c(1,2,3)
b = c(4,5,6)
c = c(7,8,9)
I know I can create a 3x3 dataframe using cbind.data.frame. However, I would like to create a 2 column data frame, where rows 1-3 have a in column 1, rows 4-6 have b, etc. It would look like a data frame created manually from:
data.frame(c('a','a','a','b','b','b'), c(1,2,3,4,5,6))