Hi! I'm very new to R and find the array binding kinda hard to understand.
I have a list of lists. Each one of these lists contains 3 data tables. I'm building that list using lapply and want to bind my results together so that I have a list of only 3 items to return. Each one of the 3 lists have a name, so I've been trying to use tapply with names(...), but it doesn't work.
Here is what the list looks like:

He is my code:
res = pblapply(
PlacToTest,
function (x)EsPaCeSimulation(Mydata, ID_Stand = x, TpsSimul = TpsSimul, UseMixedStdTYPE = UseMixedStdTYPE ))
tapply(res[[1]], names(res[[1]]), bind_rows)
where res is
listOfResults = list(
"EsPaCe" = ResFinal,
"Natura_inventory" = NaturaInit[[1]],
"Natura_study" = NaturaInit[[2]]
)
Can someone help me? Thanks!