Given a list of lists my goal is to reverse its structure (R language).
So, I want to bring the elements of the nested lists to be el
reshape can get you close,
library(reshape) b = recast(z, L2~L1) split(b[,-1], b$L2)