美文网首页
np.bincount

np.bincount

作者: 默写年华Antifragile | 来源:发表于2019-07-18 20:18 被阅读0次

    np.bincount(x, weights=None, minlength=None)
    计算每个非负数字(0,1,2,3.....)在给定的非负数组 x 中出现的次数
    Count number of occurrences of each value in array of non-negative ints.

    e.g.

        >>> np.bincount(np.arange(5))
        array([1, 1, 1, 1, 1])
        >>> np.bincount(np.array([0, 1, 1, 3, 2, 1, 7]))
        array([1, 3, 1, 1, 0, 0, 0, 1])
    
        >>> x = np.array([0, 1, 1, 3, 2, 1, 7, 23])
        >>> np.bincount(x).size == np.amax(x)+1
        True
    

    加上权重

        >>> w = np.array([0.3, 0.5, 0.2, 0.7, 1., -0.6]) # weights
        >>> x = np.array([0, 1, 1, 2, 2, 2])
        >>> np.bincount(x,  weights=w)
        array([ 0.3,  0.7,  1.1])
    

    相关文章

      网友评论

          本文标题:np.bincount

          本文链接:https://www.haomeiwen.com/subject/rzurlctx.html