测试数据:坐标数据:testExcelData.xlsx
使用python读取excel文件需要安装xlrd库:
xlrd下载后的压缩文件:xlrd-1.2.0.tar.gz
解压后再进行安装即可,具体安装方法请另行百度。
代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import xlrd import matplotlib.pyplot as plt import numpy as np #打开文件 data = xlrd.open_workbook(r 'testExcelData.xlsx' ) #获取表格数目 nums = len (data.sheets()) for i in range (nums): #根据sheet顺序打开sheet sheet1 = data.sheets()[i] #根据sheet名称获取 sheet2 = data.sheet_by_name( 'Sheet1' ) #获取sheet(工作表)行(row)、列(col)数 nrows = sheet2.nrows #行 ncols = sheet2.ncols #列 x_mat = [] y_mat = [] for i in range (nrows): print (sheet2.row_values(i)) x_mat.append(sheet2.row_values(i)[ 0 ]) y_mat.append(sheet2.row_values(i)[ 1 ]) #print(x_mat) #print(y_mat) plt.scatter(x_mat,y_mat) for x, y in zip (x_mat, y_mat): plt.text(x, y, (x, y), ha = "center" , va = "bottom" , fontsize = 10 ) plt.show() |
运行结果:
1
2
3
4
5
6
7
|
[ 1.0 , 2.0 ] [ 6.0 , 2.0 ] [ 3.0 , 3.0 ] [ 4.0 , 5.0 ] [ 8.0 , 8.0 ] [ 6.0 , 6.0 ] [ 7.0 , 9.0 ]<br> |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/fu_jian_ping/article/details/88907355