繁体   English   中英

python:使用numpy.histogram

[英]python: using numpy.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的范围?

也许你正在寻找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. 如果你没有浮点数,你可以这样做: [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)

这是一个例子: 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])

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM