[R] exit function in R?

Hans-Joerg Bibiko bibiko at eva.mpg.de
Mon Jun 2 15:33:17 CEST 2008


On 2 Jun 2008, at 15:18, Federico Abascal wrote:

> Hi,
> This is likely an stupid question, but I cannot find the solution.
> I am searching for an "exit" function, to end the execution of an R
> script if some condition is not filled.
> Any clue?
>

f <- function() {
   ...
   if (1 == 1) return(WHATEVER)
   ...
   ...
   return(ONSUCCESS)
}

--Hans



More information about the R-help mailing list