powered by
Executes a function call with option to ignore unused arguments.
# S3 method for default doCall(.fcn, ..., args=NULL, alwaysArgs=NULL, .functions=list(.fcn), .ignoreUnusedArgs=TRUE, envir=parent.frame())
A function or a character string specifying the name of a function to be called.
function
character
Named arguments to be passed to the function.
A list of additional named arguments that will be appended to the above arguments.
list
A list of additional named arguments that will be appended to the above arguments and that will never be ignore.
A list of function:s or names of functions. This can be used to control which arguments are passed.
If TRUE, arguments that are not accepted by the function, will not be passed to it. Otherwise, all arguments are passed.
TRUE
An environment in which to evaluate the call.
environment
do.call().
do.call
# NOT RUN { doCall("plot", x=1:10, y=sin(1:10), col="red", dummyArg=54, alwaysArgs=list(xlab="x", ylab="y"), .functions=c("plot", "plot.xy")) # }
Run the code above in your browser using DataLab