which.max()
La función en lenguaje R se usa para devolver la ubicación del primer valor máximo en el vector numérico.
Sintaxis: cual.max(x)
Parámetros:
x: Vector Numérico
Ejemplo 1:
# R program to find index of # first maximum value # Creating a vector x <- c(2, 3, 4, 5, 1, 2, 3, 1, 2) # Calling which.max() function which.max(x) # Printing maximum value x[which.max(x)]
Producción:
[1] 4 [1] 5
Ejemplo 2:
# R program to find index of # first maximum value # Calling pre-defined dataset BOD$demand # Calling which.max() function which.max(BOD$demand) # Printing maximum value BOD$demand[which.max(BOD$demand)]
Producción:
[1] 8.3 10.3 19.0 16.0 15.6 19.8 [1] 6 [1] 19.8
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