python:使用numpy.histogram

时间:2010-08-03 17:50:35

标签: python arrays list histogram

我正在使用这个:

http://docs.scipy.org/doc/numpy/reference/generated/numpy.histogram.html

我有一个我想要使用的列表a

numpy.histogram(a,bins=[0.1,0.2,0.3,0.4...6], range=[0:6])
  1. 如何在0.1个间隔中包含一组0.1到6的区域?
  2. 如何指定0到6的范围?

2 个答案:

答案 0 :(得分:5)

也许您正在寻找np.linspace(0,6,num=61)np.arange(0,6.1,0.1)

import numpy as np
a=np.random.random(100)*6
hist=np.histogram(a,bins=np.linspace(0,6,num=61))

答案 1 :(得分:2)

  1. 如果你对浮点数没问题,可以这样做:[x/10.0 for x in range(61)]给你(省略中间元素)[0.0, 0.10000000000000001, 0.20000000000000001, ... 5.7000000000000002, 5.7999999999999998, 5.9000000000000004, 6.0]

    否则,请参阅decimal模块。

  2. range(7)

  3. 这是一个例子:pop包含来自序列0,0.01,0.02,...,5.99,6的1000个随机数。箱子是您指定的。您可以添加或不添加范围 - 在任何情况下,在这种情况下,端点都很容易。

    >>> import numpy
    >>> import random
    >>> pop = []
    >>> for i in range(1000):
    ...     pop.extend([random.choice(range(600))/100.0])
    ... 
    >>> bins = [x/10.0 for x in range(61)]
    >>> hist, bin_edges = numpy.histogram(pop, bins)
    >>> bin_edges
    array([ 0. ,  0.1,  0.2,  0.3,  0.4,  0.5,  0.6,  0.7,  0.8,  0.9,  1. ,
            1.1,  1.2,  1.3,  1.4,  1.5,  1.6,  1.7,  1.8,  1.9,  2. ,  2.1,
            2.2,  2.3,  2.4,  2.5,  2.6,  2.7,  2.8,  2.9,  3. ,  3.1,  3.2,
            3.3,  3.4,  3.5,  3.6,  3.7,  3.8,  3.9,  4. ,  4.1,  4.2,  4.3,
            4.4,  4.5,  4.6,  4.7,  4.8,  4.9,  5. ,  5.1,  5.2,  5.3,  5.4,
            5.5,  5.6,  5.7,  5.8,  5.9,  6. ])
    >>> hist
    array([20, 11, 22, 17, 25, 11, 15, 15, 13, 18, 21, 21, 16, 13, 12, 18, 16,
           19, 11, 14, 15, 20, 20,  9, 13, 16, 20, 19, 23, 11, 19, 12, 21, 15,
           16, 24, 24, 16, 19, 18, 10, 14, 29, 11, 16, 15, 14, 19, 11, 15, 16,
           12, 17, 18, 12, 14, 27, 12, 21, 19])