Skip to content
Prev 106770 / 398506 Next

OT: any recommendation for scripting language

Its easier to write command line filters using perl/python/gawk than R.
Its possible in R but awkward as there is no good way (platform
independent,easy to use) of referring to stdin data.

Something as simple as

gawk 1

which just copies its input to its output is pretty awkward in R.  What
R really needs is the ability to write:

R -f myprog.R < myinput.dat > myoutput.data

and have myprog.R refer to myinput.dat via /dev/stdin .
On 12/30/06, Wensui Liu <liuwensui at gmail.com> wrote: