📌  相关文章
📜  'numpy.ndarray' 对象没有属性 'count' - Python 代码示例

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

代码示例1
>>> a = numpy.array([0, 3, 0, 1, 0, 1, 2, 1, 0, 0, 0, 0, 1, 3, 4])
>>> unique, counts = numpy.unique(a, return_counts=True)
>>> dict(zip(unique, counts))
{0: 7, 1: 4, 2: 1, 3: 2, 4: 1}