In R, how can I determine whether a function call results in a warning?
That is, after calling the function I would like to know whether that instance of the call yielded a warning.
|
In R, how can I determine whether a function call results in a warning? That is, after calling the function I would like to know whether that instance of the call yielded a warning. |
|||
|
|
If you want to use the
To get both the result and the warning :
Using
|
|||||||||
|
|
On the R-help mailing list (see http://tolstoy.newcastle.edu.au/R/help/04/06/0217.html), Luke Tierney wrote: "If you want to write a function that computes a value and collects all warning you could do it like this:
|
|||||||
|
|
here is an example:
maybe this is somehow indirect, but i don't know the more straightforward way. |
|||||||||||||
|