I\'ve got a list of lists, call it listHolder, which has length 5.
listHolder
Every element in listHolder is a list of numeric data, with 160 or so e
The value of nrow needs to be fixed. I fixed your code as follows:
dd <- as.data.frame(matrix(unlist(listHolder), nrow=length(unlist(listHolder[1]))))