博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python3.4读取excel数据绘图
阅读量:6344 次
发布时间:2019-06-22

本文共 1227 字,大约阅读时间需要 4 分钟。

1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # __author__ = "blzhu" 4 """ 5 python study 6 Date:2017 7 """ 8 # coding=utf-8 9 #######################################################10 # filename:xlrd_draw.py11 # author:12 # date:xxxx-xx-xx13 # function:读excel文件中的数据14 #######################################################15 import numpy as np16 import matplotlib.pyplot as plt17 import xlrd18 19 # 打开一个workbook20 workbook = xlrd.open_workbook(r'E:\python\pycharmwork\test\matplotlibzbl\Barometer.xlsx')21 22 # 抓取所有sheet页的名称23 worksheets = workbook.sheet_names()24 print('worksheets is %s' % worksheets)25 26 # 定位到mySheet27 mySheet = workbook.sheet_by_name(u'Pressure')28 29 # get datas30 pressure = mySheet.col_values(0)31 print(pressure)32 time = mySheet.col(1)33 print('time1',time)34 time = [x.value for x in time]35 print('time2',time)36 37 38 # drop the 1st line of the data, which is the name of the data.39 pressure.pop(0)40 time.pop(0)41 42 # declare a figure object to plot43 fig = plt.figure(1)44 45 # plot pressure46 plt.plot(time,pressure)47 48 plt.title('Barometer')49 plt.ylabel('Pa')50 plt.xticks(range(len(time)),time)51 plt.show()

参考:

学习python好去处:

 

转载于:https://www.cnblogs.com/zhubinglong/p/7069318.html

你可能感兴趣的文章
Spring自定义注解从入门到精通
查看>>
笔记本触摸板滑动事件导致连滑的解决方式
查看>>
Runtime 学习:消息传递
查看>>
你了解BFC吗?
查看>>
linux ssh tunnel使用
查看>>
十、详解FFplay音视频同步
查看>>
自定义元素探秘及构建可复用组件最佳实践
查看>>
小猿圈Python教程之全面解析@property的使用
查看>>
mpvue开发小程序所遇问题及h5转化方案
查看>>
View和Activity的生命周期
查看>>
解决PHP下载大文件失败,并限制下载速度
查看>>
java B2B2C Springcloud电子商城系统—Feign实例
查看>>
java B2B2C Springcloud多租户电子商城系统 (五)springboot整合 beatlsql
查看>>
Throwable是一个怎样的类?
查看>>
Python基础(一)
查看>>
三条代码 搞定 python 生成验证码
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
无线和有线路由哪种性能更好
查看>>
Dwr3.0纯注解(纯Java Code配置)配置与应用浅析三之后端反向调用前端
查看>>