📌  相关文章
📜  如何在 numpy 数组中查找唯一值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:39.792000             🧑  作者: Mango

代码示例6
>>> a = np.array(['a', 'b', 'b', 'c', 'a'])
>>> u, indices = np.unique(a, return_index=True)
>>> u
array(['a', 'b', 'c'], dtype='>> indices
array([0, 1, 3])
>>> a[indices]
array(['a', 'b', 'c'], dtype='