cmdArgsCall
From R.utils v2.10.1
by Henrik Bengtsson
Calls an R function passing command-line arguments
Calls an R function passing command-line arguments.
- Keywords
- internal, programming
Usage
cmdArgsCall(..., args=cmdArgs(unique = FALSE), .ignoreUnusedArgs=FALSE,
envir=parent.frame())
Arguments
- ...
Arguments passed to
doCall
(), including the function to be called.- args
A
list
of arguments to be passed to the function being called.- .ignoreUnusedArgs
Passed to
doCall
().- envir
An
environment
in which to evaluate the call.
Value
Returns whatever the called function returns.
See Also
Examples
# NOT RUN {
Rscript -e R.utils::cmdArgsCall(rnorm) n=4
# }
Community examples
Looks like there are no examples yet.