Debugging with
[This article was first published on Rainer's Blog » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
I just found these two gems about debugging in R on r-help today (here is the thread):
1) posted by Thomas Lumley:
traceback()
gets you a stack trace at the last error
options(warn=2)
makes warnings into errors
options(error=recover)
starts the post-mortem debugger at any error,
allowing you to inspect the stack interactively.
2) added by William Dunlap:
options(warning.expression=quote(recover()))
will start that same debugger at each warning.
I think these are very useful ideas to remember – thanks.
Cheers, and enjoy life.
To leave a comment for the author, please follow the link and comment on their blog: Rainer's Blog » R.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.