My list has 12000 entries. Each entry consists of 16 columns and 8 rows. I would like to create a data frame for every single entry. I'm interested in 3 of the 16 columns (X,Y and Z coordinates)
I already tried this:
data_frame12000 <- as.data.frame(do.call(cbind, list_small_read_laz))
This and other functions only create one big data.frame with all the 16 columns for each entry.
Can anybody help me?
Thank You in advance!