@Cettt Could you explain further? I tried creating an empty 2x2 data frame test <-data.frame(matrix(ncol=2,nrow=2)) and then test[1,1] <- c(1,1), but R didn't dig it...
I do not see how a data frame satisfies my needs. The columns of a data frame can be heterogeneous, but I cannot (or cannot see how to) store a matrix in mydataframe[i,j].
test <-data.frame(matrix(ncol=2,nrow=2))and thentest[1,1] <- c(1,1), but R didn't dig it...mydataframe[i,j].my2Dlist[[i]][[j]]to access an element at the position (i, j).