Is there a way to return the indices of k-minimum values along an axis of a numpy array without using loops?

link|improve this question

53% accept rate
feedback

1 Answer

up vote 5 down vote accepted
import numpy as np
x = np.array([[5, 2, 3],[1, 9, 2]]) # example data
k = 2 # return the indices of the 2 smallest values
np.argsort(x, axis=1)[:,0:k] # by row

array([[1, 2],
       [0, 2]])
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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