is.matrix()
La función en R Language se usa para devolver VERDADERO si los datos especificados están en forma de array; de lo contrario, devuelve FALSO.
Sintaxis: es.array(x)
Parámetros:
x: array especificada
Ejemplo 1:
# R program to illustrate # is.matrix function # Specifying some different types of arrays A <- matrix(c(1:5)) B <- matrix(c(1:12), nrow = 4, byrow = TRUE) C <- matrix(c(1:12), nrow = 4, byrow = FALSE) # Calling is.matrix() function is.matrix(A) is.matrix(B) is.matrix(C)
Producción:
[1] TRUE [1] TRUE [1] TRUE
Ejemplo 2:
# R program to illustrate # is.matrix function # Specifying Biochemical oxygen demand data x <- BOD # Calling is.matrix() function is.matrix(x) # Calling is.matrix() function # over different types of data is.matrix(4) is.matrix("2") is.matrix("a")
Producción:
[1] FALSE [1] FALSE [1] FALSE [1] FALSE
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA