do.call {base} | R Documentation |
do.call
executes a function call from the name of the function
and a list of arguments to be passed to it.
do.call(fun, args)
fun |
a character string naming the function to be called. |
args |
a list of arguments to the function call. The
|
The result of the (evaluated) function call.
call
which creates an unevaluated call.
do.call("complex", list(imag = 1:3))