is there a builtin function of Python that does on python.array what argsort() does on a numpy.array?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I timed the suggestions above and here are my results. First of all, the functions:
Now, the IPython session:
FWIW |
|||
|
|
|
There is no built-in function, but it's easy to assemble one out of the terrific tools Python makes available:
It works on Python
|
|||||||||||||||
|
|
My alternative with enumerate:
Better though to use answer from http://stackoverflow.com/users/9990/marcelo-cantos answer to thread http://stackoverflow.com/questions/3407414/python-sort-without-lambda-expressions
|
||||
|
|