直方图:分布的最常用表示方法
表示分布最常用的方法就是直方图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()