过去几年我一直在编写很多R代码,但实际上我从未找到如何调试R代码(我正在使用Eclipse),这非常令人沮丧和耗时。 你知道现在有可能吗? (断点等等。)似乎由于某种原因它不可用。
请你指点任何教程,
由于
答案 0 :(得分:1)
这个eclipse插件有助于调试R代码:
答案 1 :(得分:0)
不是日食,但R有一个精美的debuger包。
install.packages("debug")
library(debug)
f = function(x){ print("hello"); return(x+1);}
mtrace(f,T)
f(1) # this will open a debug window
mtrace(f,F) # to stop the function from being debugged (or traced)