I am given two list of lists. I would like to merge the list on the sublist Level. As an example, I am given
L1 <- list(list("a"=1,"b"=2),list("a"=10,"b"=20))
L2 <- list(list("c"=3,"d"=4),list("c"=5,"d"=6))
I would like to create a total list looking as follows:
Ltot<-list(list("a"=1,"b"=2,"c"=3,"d"=4),list("a"=10,"b"=20,"c"=5,"d"=6))