powered by
Launches another R process from within R via system() by automatically locating the R executable, cf [1].
system
# S3 method for default systemR(command="", ..., Rcommand="R", verbose=FALSE)
Returns what system() returns.
A character string be appended to the system() call. If a vector, then the strings are concatenated separated with a space.
character
vector
Additional arguments passed to system().
A character string specifying the basename of the R executable.
A logical or a Verbose object.
logical
Verbose
Henrik Bengtsson
[1] R-devel thread 'Best way to locate R executable from within R?', May 22, 2012.
The R executable is located using R.home(), which is then launched using system().
R.home
res <- systemR(paste("--slave -e", shQuote("cat(runif(1))")), intern=TRUE) cat("A random number: ", res, "\n", sep="")
Run the code above in your browser using DataLab