Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have two lists of data.tables of equal length in R. I want to element-wise cbind them. I sort of want to do a zip function where the input is two lists and the output is one list as illustrated below:

list1 list2                  list3
----- -----       ----------------
 dt1a  dt2a       cbind(dt1a,dt2a)
 dt1b  dt2b  =>   cbind(dt1b,dt2b)
 dt1c  dt2c       cbind(dt1c,dt2c)

What is the easiest way to do this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
559 views
Welcome To Ask or Share your Answers For Others

1 Answer

list3 <- mapply(cbind, list1, list2, SIMPLIFY=FALSE)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...