do.call which ignores non-relevant parameters
do.call_robust(
what,
args,
quote = FALSE,
envir = parent.frame(),
keep.unnamed = FALSE
)
either a function or a non-empty character string naming the function to be called.
a list of arguments to the function call. The
names
attribute of args
gives the argument names.
a logical value indicating whether to quote the arguments.
an environment within which to evaluate the call. This
will be most useful if what
is a character string and
the arguments are symbols or quoted expressions.
Logical: If TRUE keep all unnamed arguments.