| merge_lists {oeli} | R Documentation |
Merge named lists
Description
This function merges lists based on their element names. Elements are
only included in the final output list, if no former list has
contributed an element with the same name.
Usage
merge_lists(...)
Arguments
... |
One or more named |
Value
A list.
Examples
merge_lists(list("a" = 1, "b" = 2), list("b" = 3, "c" = 4, "d" = NULL))
[Package oeli version 0.5.2 Index]