标签: r breakpoints
我有一个文件test.R
test.R
a <- 5+9 b <- a+10 c <- b+42
如果我从命令行启动R并尝试setBreakpoint(srcfile="test.R", line=2),我会收到错误:No source refs found.
setBreakpoint(srcfile="test.R", line=2)
No source refs found.
setBreakpoint的文档让我相信setBreakpoint仅用于在函数声明中设置断点。
setBreakpoint
问题:当从命令行运行R时,有没有办法在文件中的特定行号处设置断点?