is.logical()
La función en R Language se usa para verificar si un valor es lógico o no.
Sintaxis: es.lógico(x)
Parámetros:
x: Valor a comprobar
Ejemplo 1:
# R Program to test whether # a value is logical or not # Calling is.logical() function is.logical(0) is.logical(!5) is.logical(T) is.logical(FALSE)
Producción:
[1] FALSE [1] TRUE [1] TRUE [1] TRUE
Ejemplo 2:
# R Program to test whether # a value is logical or not # Creating vector x1 <- c(1, 2, 3, 4) x2 <- c(T, F, TRUE, FALSE, ! 2) x3 <- c(1, T, F) # Calling is.logical() function is.logical(x1) is.logical(x2) is.logical(x3)
Producción:
[1] FALSE [1] TRUE [1] FALSE
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA