is.integer()
La función en R Language se usa para verificar si el objeto que se le pasa como argumento es de tipo entero.
Sintaxis: es.entero(x)
Parámetros:
x: Objeto a comprobar
Ejemplo 1:
# R program to check if # object is an integer # Creating a vector x1 <- 4L x2 <- c(1:6) x3 <- c("a", "b", "c", "d") x4 <- c(1, 2, "a", 3, "b") # Calling is.integer() function is.integer(x1) is.integer(x2) is.integer(x3) is.integer(x4)
Producción:
[1] TRUE [1] TRUE [1] FALSE [1] FALSE
Ejemplo 2:
# R program to check if # object is an integer # Creating a matrix x1 <- matrix(c(1:9), 3, 3) # Calling is.integer() function is.integer(x1)
Producción:
[1] TRUE
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