Is there any convenient way to automatically parse command line arguments passed to R scripts?
Something like perl's Getopt::Long?
|
Is there any convenient way to automatically parse command line arguments passed to R scripts? Something like perl's |
|||
|
|
There are two packages on CRAN: |
|||
|
|
|
The simplest way is to use commandArgs(). Example - save the code below as "options.R":
Run using "Rscript options.R x y z". Result:
i.e. a list of 3 elements, one per argument. |
||||
|
|
|
Just to complement the Rscript answer:
We just use |
||||
|
|