call_intercalate | R Documentation |
Arguments in ... supercede in case of collisions with extra
call_intercalate(f, ..., extra) call_intercalate_left(f, ..., extra) call_intercalate_right(f, ..., extra) meld_list_left(x, y)
f |
|
... |
key-value (named) arguments |
extra |
named |
x |
list |
y |
list |
value of f
with supplied arguments
call_intercalate_left
: don't warn with collision
call_intercalate_right
: arguments in extra
take presidence
meld_list_left
: combine lists, preferentially taking elements from x if there are duplicate names
call_intercalate(sum, 3, 4, NA, extra = list(na.rm = TRUE)) call_intercalate_left(sum, 3, NA, na.rm = FALSE, extra = list(na.rm = TRUE)) call_intercalate_right(sum, 3, NA, na.rm = FALSE, extra = list(na.rm = TRUE)) meld_list_left(list(A=1, B=2), list(A = 0))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.