search for: r_infile

Displaying 1 result from an estimated 1 matches for "r_infile".

Did you mean: infile
1999 Sep 01
1
BATCH processing in R
Dear List, My question is whether it is possible (and if so, how) to enter values into R vectors (R_OUTFILE, and R_INFILE in my example below) from the command line. In particular, I would like to run R, as a BATCH job, from a shell script, such as the following: while read inputfile_name outputfile_name; do R_OUTFILE=$outputfile_name R_INFILE=$inputfile_name R BATCH infile.R done with, for example, the...