R/Debugging
From QERM Wiki
(Difference between revisions)
Line 1: | Line 1: | ||
== Interactive Debugging in R == | == Interactive Debugging in R == | ||
− | Often times when we write our own functions, or use other functions in various packages, the error messages can sometimes get confusing. While good programming practice and patience are keys to solving these problems, R also has some other tools that can be used | + | Often times when we write our own functions, or use other functions in various packages, the error messages can sometimes get confusing. While good programming practice and patience are keys to solving these problems, R also has some other tools that can be used to make the debugging process, which is critical in any programming assignment, as smooth, helpful, (and even fun!) as possible. |
The most useful debugging functions are <tt> | The most useful debugging functions are <tt> |
Revision as of 16:29, 7 November 2008
Interactive Debugging in R
Often times when we write our own functions, or use other functions in various packages, the error messages can sometimes get confusing. While good programming practice and patience are keys to solving these problems, R also has some other tools that can be used to make the debugging process, which is critical in any programming assignment, as smooth, helpful, (and even fun!) as possible.
The most useful debugging functions are
- traceback
- debug
- trace
- options(error=recover)
Here is a very helpful reference on interactive debugging by Roger Peng, UCLA.