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.
我知道 R 具有某些功能,例如browser(), cat(), 并且print()可用于基本调试,并且某些 R 环境可能具有现代调试器。
browser()
cat()
print()
我正在查看旧环境中的旧脚本,它不允许安装新的现代可视调试器。
我本以为这debug()会很有用,但实际上脚本的主要功能似乎只使用了很少的功能;它有许多 if-then 表达式。
debug()
因此,我唯一明显的调试方法是使用print()和cat()跟踪控制流和变量值。
我错过了一些明显的调试策略吗?
谢谢。