Displaying 1 result from an estimated 1 matches for "exe_output".
2010 Nov 02
1
system() and system2() functions
Hello,
I help to maintain a moderate library of R code. In this code we have a number
of calls to the system function along the lines of:
exe_output = system("./executable.exe",intern=T)
We tend to prefer system() over shell() because, provided the executable has
been compiled and the working directory set, the command works under both linux
and windows.
We've never had a problem with this code using R 2.9 and lower, but I'...