Efficient way to take the minimum/maximum n values and indices from a matrix using NumPy

前端 未结 3 2001
挽巷
挽巷 2020-11-30 08:09

What\'s an efficient way, given a NumPy matrix (2D array), to return the minimum/maximum n values (along with their indices) in the array?

Currently I h

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-30 08:23

    Since the time of the other answer, NumPy has added the numpy.partition and numpy.argpartition functions for partial sorting, allowing you to do this in O(arr.size) time, or O(arr.size+n*log(n)) if you need the elements in sorted order.

    numpy.partition(arr, n) returns an array the size of arr where the nth element is what it would be if the array were sorted. All smaller elements come before that element and all greater elements come afterward.

    numpy.argpartition is to numpy.partition as numpy.argsort is to numpy.sort.

    Here's how you would use these functions to find the indices of the minimum n elements of a two-dimensional arr:

    flat_indices = numpy.argpartition(arr.ravel(), n-1)[:n]
    row_indices, col_indices = numpy.unravel_index(flat_indices, arr.shape)
    

    And if you need the indices in order, so row_indices[0] is the row of the minimum element instead of just one of the n minimum elements:

    min_elements = arr[row_indices, col_indices]
    min_elements_order = numpy.argsort(min_elements)
    row_indices, col_indices = row_indices[min_elements_order], col_indices[min_elements_order]
    

    The 1D case is a lot simpler:

    # Unordered:
    indices = numpy.argpartition(arr, n-1)[:n]
    
    # Extra code if you need the indices in order:
    min_elements = arr[indices]
    min_elements_order = numpy.argsort(min_elements)
    ordered_indices = indices[min_elements_order]
    

提交回复
热议问题