is.table()
La función en R Language se usa para verificar si un objeto es una tabla.
Sintaxis: es.tabla(x)
Parámetros:
x: Objeto a comprobar
Ejemplo 1:
# R Program to check # if an object is a table # Creating a vector vec = c(2, 4, 3, 1, 2, 3, 2, 1, 4, 2) # calling is.table() Function is.table(vec) # Converting to table x <- as.table(vec) x # Calling is.table() again is.table(x)
Producción:
[1] FALSE A B C D E F G H I J 2 4 3 1 2 3 2 1 4 2 [1] TRUE
Ejemplo 2:
# R Program to convert # an object to a table # Creating a matrix mat = matrix(c(1:9), 3, 3) # Calling is.table() function is.table(mat) # Converting to table x <- as.table(mat) x # Calling is.table() function again is.table(x)
Producción:
[1] FALSE A B C A 1 4 7 B 2 5 8 C 3 6 9 [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