直方图:分布的最常用表示方法

表示分布最常用的方法就是直方图histogram,这种图用于展示各个值出现的频率和概率

import
Pmf import operator import matplotlib.pyplot as pyplot hist = Pmf.MakeHistFromList([1, 2, 2, 3, 5]) vals, freqs = hist.Render() rectangles = pyplot.bar(vals, freqs) pyplot.show()


import matplotlib.pyplot as pyplot

pyplot.pie([1, 2, 3])
pyplot.show()


 

posted on 2013-08-03 17:49  雨渐渐  阅读(826)  评论(0编辑  收藏  举报

导航