函数 which() 可以用来找到满足条件的下标,如

x <- c(3, 4, 3, 5, 7, 5, 9)
which(x > 5) 5 7

  

seq(along=x)[x > 5]

5 7

这里 seq(along=x) 会生成由 x 的下标组成的向量

用 which.min() 、
which.max 求最小值的下标和最大值的下标,不唯一时只取第一个。如

which.min(x)
1 which.max(x)
7

  

05-11 21:45