mergeLists: Merging of multiple lists

Description Usage Arguments Value Examples

View source: R/mergeLists.R

Description

The merge allows for a recursive component where the lists are compared on the subelement. If one does not contain that element it will get NA in for those parameters.

Usage

1
mergeLists(..., lapplyOutput = NULL)

Arguments

...

Any number of lists that you want to merge

lapplyOutput

The lapply function outputs a number of lists and this is for specifically merging all of those.

Value

Returns a list with all the given lists.

Examples

1
2
3
v1 <- list("a"=c(1,2), b="test 1", sublist=list(one=20:21, two=21:22))
v2 <- list("a"=c(3,4), b="test 2", sublist=list(one=10:11, two=11:12, three=1:2))
mergeLists(v1, v2)

raredd/Gmisc0 documentation built on May 27, 2019, 2:02 a.m.