“Cómo lanzar un error en r” Código de respuesta

Cómo lanzar un error en r

 x <- ifelse(x < 0 | x > 1, NA, x )
 if( any(is.na(x)) ) warning('x not between 0 and 1')
 log(x / (1 - x) )
Lucky Lyrebird

Cómo lanzar un error en r

logit <- function(x){
 if( any(x < 0 | x > 1) ) stop('x not between 0 and 1')
 log(x / (1 - x) )
}
Lucky Lyrebird

Cómo lanzar un error en r

> logitpercent(c('50%','150%'))
Error in logit(as.numeric(x)/100) : x not between 0 and 1
Lucky Lyrebird

Respuestas similares a “Cómo lanzar un error en r”

Preguntas similares a “Cómo lanzar un error en r”

Más respuestas relacionadas con “Cómo lanzar un error en r” en R

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código