当前位置:  开发笔记 > 后端 > 正文

调试littler/Rscripts

如何解决《调试littler/Rscripts》经验,为你挑选了1个好方法。

如何调试Rscripts从命令行运行?

我目前正在使用该getopt包来传递命令行选项,当出现错误时我很难,我很难:

    看看究竟出了什么问题;

    以交互方式调试R(因为脚本需要命令行选项.)

有没有人有示例代码并愿意分享?



1> Mark..:

您可以使用--args将命令行参数传递到交互式shell中,然后将源代码('')传递给脚本.

$ R --args -v

R version 2.8.1 (2008-12-22)
Copyright (C) 2008 The R Foundation for Statistical Computing
ISBN 3-900051-07-0

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> require(getopt)
Loading required package: getopt
> opt = getopt(c(
+ 'verbose', 'v', 2, "integer"
+ ));
> opt
$verbose
[1] 1
> source('my_script.R')

您现在可以使用旧的browser()函数进行调试.

推荐阅读
携手相约幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有