Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

R offers max and min, but I do not see a really fast way to find the another value in the order apart from sorting the whole vector and than picking value x from this vector.

Is there a faster way to get the second highest value (e.g.)?

Thanks

share|improve this question

3 Answers

up vote 34 down vote accepted

Use the partial argument of sort(). For the second highest value:

n <- length(x)
sort(x,partial=n-1)[n-1]
share|improve this answer
Arr, very good and it works in all cases, would not have thought about that, thanks! – user235984 Mar 16 '10 at 13:18

Slightly slower alternative, just for the records:

x <- c(12.45,34,4,0,-234,45.6,4)
max( x[x!=max(x)] )
min( x[x!=min(x)] )
share|improve this answer
Nice thing about it being one row! Thank for adding it! – user235984 Mar 16 '10 at 13:14

For nth highest value,

sort(x, TRUE)[n]
share|improve this answer
1  
The OP already said in his post that this was a solution he did not want to use: "apart from sorting the whole vector and than picking value x from this vector". – Paul Hiemstra Dec 15 '11 at 11:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.