I am working with a large data set that is currently in list form. The data has differing lengths for all of the rows. How do I get this into a data frame without getting this error
"Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, :
arguments imply differing number of rows: 114, 1, 734, 40"
I have tried using df <- data.frame(session)
but i just keep getting the same error and don't know how to get around it.