I have a 2D Numpy Array - arr2D = numpy.array([[11, 12, 13], [14, 15, 16], [17, 15, 11], [12, 14, 15]]).
- I want to find the first 3 largest values in above 2D array ==> 17, 16, 15
- I also want to get row index number of these values in an array ==> row index = 2,1,3
Can someone show me how to achieve this?
Thanks.