suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Python – Numpy-Datensortierungsproblem

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]

大家讲道理大家讲道理2753 Tage vor705

Antworte allen(1)Ich werde antworten

  • 为情所困

    为情所困2017-05-18 10:48:48

    argsort返回的是索引值的排序
    以np.argsort([3,1,2])来讲,对应的索引值是[0, 1, 2], 所以按索引值排序返回的就是[1, 2, 0]

    Antwort
    0
  • StornierenAntwort