Heim > Fragen und Antworten > Hauptteil
import numpy as np
x = np.array([3, 1, 2])
np.argsort(x)
Out[4]: array([1, 2, 0]) # 疑问点
In [13]: x = np.array([6,5,4,3,2,1])
In [14]:
In [14]: np.argsort(x)
Out[14]: array([5, 4, 3, 2, 1, 0])
Warum nicht[2,0,1]
为情所困2017-05-18 10:48:48
argsort返回的是索引值的排序
以np.argsort([3,1,2])来讲,对应的索引值是[0, 1, 2], 所以按索引值排序返回的就是[1, 2, 0]