码迷,mamicode.com
首页 > 编程语言 > 详细

shell中调用R语言并传入参数的两种方法

时间:2014-12-28 17:01:19      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:r语言   shell   linux   

第一种:

Rscript myscript.R
R脚本的输出

第二种:

R CMD BATCH myscript.R
# Check the output
cat myscript.Rout
调用R脚本的全部控制台log


传入参数:

在脚本中add

args<-commandArgs(TRUE)
然后shell中:

Rscript myscript.R arg1 arg2 arg3
注意取出来的参数是所有参数连在一起的character


shell中调用R语言并传入参数的两种方法

标签:r语言   shell   linux   

原文地址:http://blog.csdn.net/crystal_tyan/article/details/42214339

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!