La función ncol() en R Language se usa para devolver el número de columnas de la array especificada.
Sintaxis: ncol(x)
Parámetros:
x: array, vector, arreglo o marco de datos
Ejemplo 1:
Python3
# R program to illustrate # ncol function # Getting R Biochemical Oxygen Demand Dataset BOD # Calling ncol() function to # get the number of columns ncol(BOD)
Producción:
Time demand 1 1 8.3 2 2 10.3 3 3 19.0 4 4 16.0 5 5 15.6 6 7 19.8 [1] 2
Ejemplo 2:
Python3
# R program to illustrate # ncol function # Specifying a matrix x <- matrix(c(1, 2, 3, 4), 2, 2) # Calling the ncol() function ncol(x)
Producción:
[1] 2
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