Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从命令行以browser()停止执行的方式运行其中的脚本?
browser()
Rscript file.R
对我不起作用。看来我只能使用browser()fromR的解释器。我究竟做错了什么?
R
R 函数,如browser()、debugger()或recover()仅以交互方式工作。
debugger()
recover()
如果您的脚本不接受命令行参数,一个简单的解决方法是启动 R 和source("myscript.R").
source("myscript.R")