suchen

Heim  >  Fragen und Antworten  >  Hauptteil

python3.x – Gibt es eine direkte Möglichkeit, mehrdimensionale Arrays in Python zu sortieren?

So sortieren Sie das folgende Array in absteigender Reihenfolge der ersten Spalte:

dl1 = numpy.array([[ 0.02598003,1.],
                   [ 0.00730082,2.],
                   [ 0.05471569,3.],
                   [ 0.02599167,4.],
                   [ 0.0544947 ,5.],
                   [ 0.00753346,6.]])

Andere Stellen im Internet sagen, dass direktes dl1.sort() standardmäßig nach der ersten Spalte sortiert, aber es scheint nicht zu funktionieren

習慣沉默習慣沉默2750 Tage vor657

Antworte allen(4)Ich werde antworten

  • 迷茫

    迷茫2017-05-18 10:55:30

    sorted(dl1, key=lambda x: x[0])

    Antwort
    0
  • 黄舟

    黄舟2017-05-18 10:55:30

    >>> a=np.array([[ 0.02598003,1.],
                   [ 0.00730082,2.],
                   [ 0.05471569,3.],
                   [ 0.02599167,4.],
                   [ 0.0544947 ,5.],
                   [ 0.00753346,6.]])
    >>> a.sort(0)
    >>> a
    array([[ 0.00730082,  1.        ],
           [ 0.00753346,  2.        ],
           [ 0.02598003,  3.        ],
           [ 0.02599167,  4.        ],
           [ 0.0544947 ,  5.        ],
           [ 0.05471569,  6.        ]])
    >>> 

    np.sort 是把各维分别排序的

    如果你是要二维组的联合排序,要用np.argsort方法

    >>> a=np.array([[ 0.02598003,1.],
                   [ 0.00730082,2.],
                   [ 0.05471569,3.],
                   [ 0.02599167,4.],
                   [ 0.0544947 ,5.],
                   [ 0.00753346,6.]])
    
    >>> a[a.argsort(0)[:,0]]
    array([[ 0.00730082,  2.        ],
           [ 0.00753346,  6.        ],
           [ 0.02598003,  1.        ],
           [ 0.02599167,  4.        ],
           [ 0.0544947 ,  5.        ],
           [ 0.05471569,  3.        ]])
    >>> 

    如果数据很多的话,用python内部的 sorted会降低效率

    Antwort
    0
  • 迷茫

    迷茫2017-05-18 10:55:30

    In [1]: lst= [[0.00730082, 2.0],
       ...:  [0.05471569, 3.0],
       ...:  [0.02599167, 4.0],
       ...:  [0.0544947, 5.0],
       ...:  [0.00753346, 6.0]]
       ...:
    
    In [2]: sorted(lst, key=lambda x: x[0])
    Out[2]:
    [[0.00730082, 2.0],
     [0.00753346, 6.0],
     [0.02599167, 4.0],
     [0.0544947, 5.0],
     [0.05471569, 3.0]]

    Antwort
    0
  • 为情所困

    为情所困2017-05-18 10:55:30

    dl1.sort(axis=0)

    ndarray.sort的关键字参数axis就是用来按照某列排序

    axis : int, optional

    Axis along which to sort. Default is -1, which means sort along the last axis.

    Antwort
    0
  • StornierenAntwort