摘要: histogram >>> a = numpy.arange(5) >>> hist, bin_edges = numpy.histogram(a,density=False) >>> hist, bin_edges (array([1, 0, 1, 0, 0, 1, 0, 1, 0, 1], dtype=int64), array([ 0. , 0.4, 0.8, 1.2, 1.6,... 阅读全文
posted @ 2017-06-29 19:04 PengpengSong 阅读(172) 评论(0) 推荐(0) 编辑