do.call(what, args)
what
| a character string naming the function to be called. |
args
|
a list of arguments to the function call. The
names attribute of args gives the argument names.
|
do.call
executes a function call from the name of the function
and a list of arguments to be passed to it.call
which creates an unevaluated call.do.call("complex", list(imag = 1:3))