which.max()不返回NA

时间:2013-06-30 21:14:30

标签: r

我有一堆有序的向量,包含0到1之间的数字。我需要找到第一个元素的索引超过某个值r:

x <- c(0.1, 0.3, 0.4, 0.8)
which.max(x >= 0.4)
[1] 3  # This is exactly what I need

现在,如果我的目标值超过了向量中的最大值,则.max()返回1,即 可以与“真正的”第一个值混淆:

which.max(x >= 0)
[1] 1
which.max(x >= 0.9) # Why?
[1] 1

如何修改此表达式以获得NA作为结果?

1 个答案:

答案 0 :(得分:12)

只需使用which()并返回第一个元素:

which(x > 0.3)[1]
[1] 3

which(x > 0.9)[1]
[1] NA

要理解为什么which.max()不起作用,您必须了解R如何将您的值从数字强制转换为逻辑到数字。

x > 0.9
[1] FALSE FALSE FALSE FALSE

as.numeric(x > 0.9)
[1] 0 0 0 0

max(as.numeric(x > 0.9))
[1] 0

which.max(as.numeric(x > 0.9))
[1] 1