Displaying 1 result from an estimated 1 matches for "infile1".
Did you mean:
infile
2005 Jan 01
2
New Year Wish List
...e who have contributed to R over the
past year. As with last year, for New Year I would like to
list the top 10 features I would like to see in R. The first
three are the most important.
1. Scripting
With this feature it would be possible to call R like
this as a filter:
R -f myprog.R infile1.txt infile2.txt > outfile.txt
or
prog1 | R -f myprog.R | prog2
making it convenient to replace many instances of
awk/perl/batch with R. This could also be used by R itself
to eliminate dependence on perl and UNIX tools in the
package building scripts. There are workarounds alr...