Thursday 29 September 2016

Interleave lists in R



Let's say that I have two lists in R, not necessarily of equal length, like:



 a <- list('a.1','a.2', 'a.3')
b <- list('b.1','b.2', 'b.3', 'b.4')


What is the best way to construct a list of interleaved elements where, once the element of the shorter list had been added, the remaining elements of the longer list are append at the end?, like:




interleaved <- list('a.1','b.1','a.2', 'b.2', 'a.3', 'b.3','b.4')


without using a loop. I know that mapply works for the case where both lists have equal length.


Answer



Here's one way:



idx <- order(c(seq_along(a), seq_along(b)))
unlist(c(a,b))[idx]


# [1] "a.1" "b.1" "a.2" "b.2" "a.3" "b.3" "b.4"


As @James points out, since you need a list back, you should do:



(c(a,b))[idx]

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...