Skip to content
Prev 315926 / 398502 Next

Concatenate two lists, list by list

In this example, I get the following:

lis1 <- replicate(3, rnorm(5), simplify = FALSE)
lis2 <- replicate(3, rnorm(5), simplify = FALSE)

lis1
lis2
mapply(c, lis1, lis2, SIMPLIFY = FALSE)


Best,
Dimitris
On 1/23/2013 11:58 AM, Alaios wrote: