6

我在下面有以下函数,我用它来解析命令行参数,以便我可以从命令行运行R脚本:

 parseArguments <- function() {
     text1 <- commandArgs(TRUE)
     eval(parse(text=gsub("\\s", ";", gsub("--","", text1))))
     args <- list()
     for( ar in ls()[! ls() %in% c("text1", "args")] ) {args[ar] <- get(ar)}
     return (args)
 }

当我尝试R使用以下命令行参数调用使用上述函数解析 CL 参数的脚本时,这是一个 CLI 会话输出:

./myscript.R --param1='XLIF' --param2='ESX' --param3=5650.0 --param4=5499.2 --param5=0.0027397260274 --param6='Jul' --riskfreerate=0.817284313119 --datafile='/path/to/some/datafile.csv' --imagedir='/path/to/images' --param7=2012 --param8=2
Error in parse(text = gsub("\\s", ";", gsub("--", "", text1))) : 
  8:10: unexpected '/'
7: riskfreerate=0.817284313119
8: datafile=/
            ^
Calls: parseArguments -> eval -> parse
Execution halted

帮助?

[[更新]]

我听从了 Dirk 的建议并安装了optparse库。我的代码现在看起来像这样:

library(optparse)

# Get the parameters
option_list <- list(
  make_option(c("-m", "--param1"), action="store_false"),
  make_option(c("-t", "--param2"), action="store_false"),
  make_option(c("-a", "--param3"), action="store_false"),
  make_option(c("-s", "--param4"), action="store_false"),
  make_option(c("-x", "--param5"), action="store_false"),
  make_option(c("-o", "--param6"), action="store_false"),
  make_option(c("-y", "--param7"), action="store_false"),  
  make_option(c("-r", "--riskfreerate"), action="store_false"),
  make_option(c("-c", "--param8"), action="store_false"),
  make_option(c("-d", "--datafile"), action="store_false"),
  make_option(c("-i", "--imagedir"), action="store_false")  
)

# get command line options, i
opt <- parse_args(OptionParser(option_list=option_list))

当我运行 R 脚本并传递相同的命令行参数时,我得到:

Loading required package: methods
Loading required package: getopt
Error in getopt(spec = spec, opt = args) : 
  long flag "param1" accepts no arguments
Calls: parse_args -> getopt
Execution halted

???

4

2 回答 2

7

是的,有 CRAN 包getoptoptparse就是为了这个。

于 2012-07-25T12:04:05.473 回答
4

我正在回答您的第二个问题,关于您遇到的错误optparse

make_option帮助页面(...):

action:描述 optparse 在遇到选项时应采取的操作的字符串,“store”、“store_true”或“store_false”。默认值为“store”,表示如果在命令字符串中找到选项,则 optparse 应存储指定的以下值。如果找到选项,“store_true”存储 TRUE,如果找到选项,“store_false”存储 FALSE。

简而言之,action = "store"如果你想运行类似的东西,你需要使用(默认):

./myscript.R --param1='XLIF' --param2='ESX' [...]
于 2012-07-25T13:21:37.533 回答