R语言接收命令行参数

作者: gada | 来源:发表于2015-04-15 21:39 被阅读1759次

    R语言接收命令行参数

    Args <- commandArgs()
    print(Args)
    

    调用结果如下:

     $ Rscript correctReads.R 1 2 3
    [1] "/Library/Frameworks/R.framework/Resources/bin/exec/R"
    [2] "--slave"
    [3] "--no-restore"
    [4] "--file=correctReads.R"
    [5] "--args"
    [6] "1"
    [7] "2"
    [8] "3"
    

    相关文章

      网友评论

        本文标题:R语言接收命令行参数

        本文链接:https://www.haomeiwen.com/subject/etpsfttx.html