码迷,mamicode.com
首页 > 编程语言 > 详细

python_将一组数据展示成直方图(以list为例)

时间:2016-11-30 16:59:19      阅读:590      评论:0      收藏:0      [点我收藏+]

标签:his   height   image   plot   draw   http   number   str   lin   

直接上代码:
技术分享
 1 from matplotlib import pyplot as plt
 2 
 3 # 参数依次为list,抬头,X轴标签,Y轴标签,XY轴的范围
 4 def draw_hist(myList,Title,Xlabel,Ylabel,Xmin,Xmax,Ymin,Ymax):
 5     plt.hist(myList,100)
 6     plt.xlabel(Xlabel)
 7     plt.xlim(Xmin,Xmax)
 8     plt.ylabel(Ylabel)
 9     plt.ylim(Ymin,Ymax)
10     plt.title(Title)
11     plt.show()
12 
13 
14 draw_hist(areaList,AreasList,Area,number,50.0,250,0.0,8)   # 直方图展示
15 draw_hist(perimeterList,perimeterList,Area,number,40.0,80,0.0,8)
View Code

结果如下:

技术分享技术分享

方便快捷,需要看一组数据的分布频数,就可以用以上的方法。

 

python_将一组数据展示成直方图(以list为例)

标签:his   height   image   plot   draw   http   number   str   lin   

原文地址:http://www.cnblogs.com/jerrybaby/p/6118236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!