Skip to content
Prev 8458 / 63424 Next

restart

On Wed, 20 Nov 2002 Mark.Bravington@csiro.au wrote:

            
One way to handle this is to wrap the result, something like

   j <- try( list(value = eval( i, envir=envir)))
   if( inherits( j, 'try-error')) <<...>>
   ...
   return(j$value)

luke