I know I can do it like the following:
import numpy as np
N=10
a=np.arange(1,100,1)
np.argsort()[-N:]
However, it is very slow since it did a full sort.
I wonder whether numpy provide some methods the do it fast.
|
|
|
The I've benchmarked:
where The timings were as follows:
|
|||||||||||
|
|
Perhaps
Result:
|
|||
|
|
Each negative sign in the proposed bottleneck solution
makes a copy of the data. We can remove the copies by doing
Also the proposed numpy solution
returns indices not values. The fix is to use the indices to find the values:
The relative speed of the two bottleneck solutions depends on the ordering of the elements in the initial array because the two approaches partition the data at different points. In other words, timing with any one particular random array can make either method look faster. Averaging the timing across 100 random arrays, each with 1,000,000 elements, gives
where the timing code is as follows:
|
|||
|
|
|
If storing the array as a list of numbers isn't problematic, you can use
to get the |
|||
|
|