如何在向量中指出maxval的位置

时间:2011-07-27 11:33:38

标签: r

在向量中指出具有最大值的位置的问题。

比方说,我有一个包含10个数字的向量,

x <- rnorm(10,0,1) [1]  1.1353978 -1.4852905 -0.1216639  0.1943784 -1.0968827  1.1051740  0.4738447 -0.6507678  0.2599902 -0.1355366


maxval <- max(x)
loc_val <- ? in this case, it should point out 1st element. loc_val <- 1

感谢。

1 个答案:

答案 0 :(得分:1)

which.max()是你的朋友。请参阅?which.max和以下示例:

R> set.seed(2)
R> x <- rnorm(10)
R> x
 [1] -0.89691455  0.18484918  1.58784533 -1.13037567 -0.08025176  0.13242028
 [7]  0.70795473 -0.23969802  1.98447394 -0.13878701
R> max(x)
[1] 1.984474
R> which.max(x)
[1] 9