list.zip {rlist} | R Documentation |
Combine multiple lists element-wisely.
Description
Combine multiple lists element-wisely.
Usage
list.zip(..., use.argnames = TRUE, use.names = TRUE)
Arguments
... |
list s
|
use.argnames |
logical . Should the names of the
arguments be used as the names of list items?
|
use.names |
logical . Should the names of the first
argument be used as the zipped list?
|
See Also
list.unzip
Examples
x <- list(1,2,3)
y <- list('x','y','z')
list.zip(num=x,sym=y)
[Package
rlist version 0.4.6.2
Index]