which.max()
R语言中的函数用于返回数值向量中第一个最大值的位置。
用法: which.max(x)
参数:
x:数字向量
范例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)]
输出:
[1] 4 [1] 5
范例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)]
输出:
[1] 8.3 10.3 19.0 16.0 15.6 19.8 [1] 6 [1] 19.8
相关用法
- R语言 which.min()用法及代码示例
- 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 Maximum Value of a Numeric Vector in R Programming – which.max() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。