is.numeric()
La función en R Language se usa para verificar si el objeto que se le pasa como argumento es de tipo numérico.
Sintaxis: is.numeric(x)
Parámetros:
x: Objeto a comprobar
Ejemplo 1:
# R program to check if # object is of numeric type # Calling is.numeric() function is.numeric(1) is.numeric(1.5) is.numeric(-1.5)
Producción:
[1] TRUE [1] TRUE [1] TRUE
Ejemplo 2:
# R program to check if # object is of numeric type # Creating a matrix x1 <- matrix(c(1:9), 3, 3) # Calling is.numeric() function is.numeric(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