I am interested in some R packages, and want to understand how it works, is there any tool to run the method in package step by step and print the intermediate output?
migrated from stats.stackexchange.com May 3 '12 at 14:13
|
The two previous answers already told you what base R, and add-on packages can do. As far as IDEs go, you have two choices:
Here is the help for ess-tracebug to give a flavor of what it can do:
|
||||
|
|
|
There is the debug package, combined with the mtrace function. There is also a new debug module for Eclipse (as Dirk mentions in his answer), and a similar capabilities might be added to Rstudio in the future. Once these are in place, the question would be how to have them debug the relevant functions. Which would basically mean getting the list of all the functions you are interested in and tracking them. p.s: you might have a look at this - http://www.r-bloggers.com/what-does-this-package-look-like/ |
|||||
|
|
The IDE in Revolution R includes convenient visual debugging features similar to those found in MS Visual Studio. Although the software is proprietary and requires paying for license, you could always download the free academic version. http://www.revolutionanalytics.com/downloads/free-academic.php |
|||
|
|