How to combine this list of vectors by elements names ?
L1 <- list(F01=c(1,2,3,4),F02=c(10,20,30),F01=c(5,6,7,8,9),F02=c(40,50))
So to get :
results <- list(F01=c(1,2,3,4,5,6,7,8),F02=c(10,20,30,40,50))
I tried to apply the following solution merge lists by elements names but I can't figure out how to adapt this to my situation.