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