markdown R的命令行选项解析

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown R的命令行选项解析相关的知识,希望对你有一定的参考价值。

options(stringsAsFactors = FALSE)

## load the libraries
library(optparse)

## create the options
parser <- OptionParser()
parser <- add_option(parser, c("-c", "--count"), 
                     type="integer",
                     default = 5, 
                     help = "How many things to return")
                    
## parse the things
cargs = parse_args(parser)

## do the thing
runif(cargs$count)
To run the script:

```
Rscript command-testing.R
```

and this will return the following within the terminal

```
[1] 0.6045390 0.8331392 0.7229302 0.1976436 0.3871353
```
# About

A quick script to explore one of the options for using command line args for an 
R script.  

https://twitter.com/BrockTibert/status/1076844910022660096

- good quick review:
-- http://blog.sellorm.com/2017/12/30/command-line-utilities-in-r-pt-6/



以上是关于markdown R的命令行选项解析的主要内容,如果未能解决你的问题,请参考以下文章

解析Python和单击命令行选项

用序列容器解析命令行选项?

在 R 脚本中解析命令行参数

具有互斥必需参数的命令行解析器

在 C# 中解析命令行参数/选项

使用多个参数解析命令行选项 [getopt?]