How to get indices of K smallest or largest elements in eaach row of a matrix in R?
E.g. I have matrix:
2 3 1 65 2
46 7 9 3 2
9 45 3 5 7
24 65 87 3 6
34 76 54 33 6
I'd like to get Indices matrix of say 2 smallest elements (breaking ties in any way) in each row. the result should be in following format:
3 1
5 4
3 4
4 5
5 4
I tried few commands using sort
, apply
, arrayInd
, which
etc. But still unable to get desired result.
Any help is welcome.
decreasing
argument toorder
to get the X largest/smallest elements in a row. – Zweig