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
|
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 |
|||
|
|
|
Use the
|
|||
|
|
Slightly slower alternative, just for the records:
|
|||
|
|
|
For nth highest value,
|
|||||
|