lbind: Bind any number of lists together Bind the elements within N...

Description Usage Arguments Value Author(s) Examples

Description

Bind any number of lists together Bind the elements within N lists into a larger list. Note this is not the same as making a list with the N lists within it. Consider 5 lists, each with 2 elements. this function will create a result with 10 elements.

Usage

1

Arguments

...

at least 2 list objects.

Value

one list with all the elements of ... combined together

Author(s)

Mark Cowley, 1 Sept, 2005

Examples

1
2
3
a <- list(A=1:5, B=6:10, C=11:15)
b <- list(D=16:20, E=21:25, F=26:30)
lbind(a, b)

drmjc/mjcbase documentation built on May 15, 2019, 2:27 p.m.