Does anyone have examples/tutorials of exception handling in R? The official documentation is very terse.
|
Besides Shane's answer pointing you to other StackOverflow discussions, you could try Google Code Search as e.g. in this query for tryCatch in language=R. (link is broken, Google discontinued the service) Just for the record, there is also |
|||||||||||||||
|
|
Basically you want to use the Here's a trivial example (keep in mind that you can do whatever you want with an error):
Have a look at these related questions: |
|||||||||
|
|
This result from a related google search helped me: http://biocodenv.com/wordpress/?p=15.
|
|||
|
|
|
The restart function is very important in R inherited from Lisp. It is useful if you want to call some function in the loop body and you just want the program to continue if the function call collapses. Try this code:
|
|||
|
|