Python使用pylab库实现绘制直方图功能示例
本文实例讲述了Python使用pylab库实现绘制直方图功能。分享给大家供大家参考,具体如下:
Python直方图
#!/usr/bin/python # -*- coding: utf-8 -*- import pylab as pl dataFile = "dataList.txt" tempList = [] with open(dataFile,"r") as data: for everLine in data: arrEverLine = [float(index) for index in everLine.split()] tempList.append(arrEverLine[0]) pl.hist(tempList,100) pl.xlabel("直方图标题", fontproperties='SimHei') pl.show()
dataList.txt内容
14 2 1 0.5 0.5 0 1 0.5 1.5 18.5
19 2 2 0.5 1 0 1 0.5 0 21
19.5 2 1.5 2 0 0.5 2 0 1 20
17.5 1.5 1 1.5 2 0 1.5 0 0 18.5
19.5 2 2 2 0.5 0 1 0 0.5 19.5
16.5 2 0.5 1 0 0.5 0.5 0 0.5 19.5
15.5 2 1 1.5 0 0 1 0.5 1 17.5
13.5 1.5 1 1 2 0 2 0.5 2 20
14.5 2 1.5 2 0 0 1 0 2 18.5
16 2 2 1.5 1 0.5 1 0 2 19.5
。。。
输出结果
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python数学运算技巧总结》、《Python字符串操作技巧汇总》、《Python编码操作技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
相关推荐
angelaluu 2020-03-03
数据与算法之美 2020-01-23
natloc 2013-11-23
芒果浩明 2012-09-08
YUAN 2019-07-01
jibkfv 2019-06-30
csmnjk 2019-06-28
wandaxiao 2019-06-28
opencvfw 2019-06-28
opencvfw 2019-06-28
taiyangshenniao 2019-06-28
zhaoenweiex 2019-06-27
IT小牛的IT见解 2019-03-17
ITxiaobaibai 2018-06-11
albertjone 2018-03-24
adsadadaddadasda 2018-08-25
mingwei 2016-08-21