which.min()
R語言中的函數用於返回數值向量中第一個最小值的位置。
用法: which.min(x)
參數:
x:數字向量
範例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)]
輸出:
[1] 5 [1] 1
範例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)]
輸出:
[1] 8.3 10.3 19.0 16.0 15.6 19.8 [1] 1 [1] 8.3
相關用法
- R語言 which.max()用法及代碼示例
- R語言 is.numeric()用法及代碼示例
- R語言 complete.cases()用法及代碼示例
- R語言 jitter()用法及代碼示例
- R語言 sign()用法及代碼示例
- R語言 as.vector()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 between()用法及代碼示例
- R語言 lower.tri()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 upper.tri()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 cumsum()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Return the Index of the First Minimum Value of a Numeric Vector in R Programming – which.min() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。