赞
踩
numpy.argsort(a, axis=-1, kind='quicksort', order=None)
返回一个排序后的数组的索引。
执行一个由kind参数指定的方式排列。
a : array_like
需要被处理的数组
axis : int or None, optional
排序的轴向,默认-1,the last axis
kind : {‘quicksort’, ‘mergesort’, ‘heapsort’, ‘stable’}
排序算法
order : str or list of str, optional
顺序
>>> x = np.array([3, 1, 2])
>>> np.argsort(x)
array([1, 2, 0])
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。