numpy.argsort()函数详解

  • 官方文档1

    numpy.argsort(a, axis=-1, kind='quicksort', order=None) 
    

    返回一个排序后的数组的索引。

    执行一个由kind参数指定的方式排列。

  • Parameters

    • a : array_like

      需要被处理的数组

    • axis : int or None, optional

      排序的轴向,默认-1,the last axis

    • kind : {‘quicksort’, ‘mergesort’, ‘heapsort’, ‘stable’}

      排序算法

    • order : str or list of str, optional

      顺序

  • Examples

    >>> x = np.array([3, 1, 2])
    >>> np.argsort(x)
    array([1, 2, 0])
    

  • Reference


  1. Scipy.org ↩︎

你可能感兴趣的:(小白学Python)