col()
La función en R Language se usa para obtener una array que contiene el número de columnas de la array que se le pasa como argumento.
Sintaxis: col(x, as.factor=FALSE)
Parámetros:
x: matrix
as.factor: un valor lógico que indica si el valor debe devolverse como un factor de etiquetas de columna (creado si es necesario) en lugar de como números
Ejemplo 1:
# R program to illustrate # col function # Initializing a matrix with # 2 rows and 2 columns x <- matrix(c(1, 2, 3, 4), 2, 2) # Getting the matrix representation x # Calling the col() function col(x)
Producción:
[, 1] [, 2] [1, ] 1 3 [2, ] 2 4 [, 1] [, 2] [1, ] 1 2 [2, ] 1 2
Ejemplo 2:
# R program to illustrate # col function # Initializing a matrix with # 3 rows and 3 columns x <- matrix(rep(1:9), 3, 3) # Getting the matrix representation x # Calling the col() function col(x)
Producción:
[, 1] [, 2] [, 3] [1, ] 1 4 7 [2, ] 2 5 8 [3, ] 3 6 9 [, 1] [, 2] [, 3] [1, ] 1 2 3 [2, ] 1 2 3 [3, ] 1 2 3
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