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