1. 程式人生 > 程式設計 >python讀取excel資料繪製簡單曲線圖的完整步驟記錄

python讀取excel資料繪製簡單曲線圖的完整步驟記錄

python讀寫excel檔案有很多種方法:

  • 用xlrd和xlwt進行excel讀寫
  • 用openpyxl進行excel讀寫
  • 用pandas進行excel讀寫

本文使用xlrd讀取excel檔案(xls,sxls格式),使用xlwt向excel寫入資料

一、xlrd和xlwt的安裝

安裝很簡單,windos+r調出執行視窗,輸入cmd,進入命令列視窗,輸入以下命令。

  • 安裝xlrd: pip install xlrd
  • 安裝xlwt: pip install xlwt

xlrd的API(application programming interface)網址: https://xlrd.readthedocs.io/en/latest/api.html

在這裡可以看到xlrd內的各種物件和方法

資料讀取

用xlrd讀取excle資料:

  • 使用xlrd.open_wokrbook(),開啟檔案,得到book物件
  • book.sheet()[0]得到sheet物件
  • 基於sheet物件獲取各種資訊,(往下還有cell物件)
import numpy as np
from matplotlib import pyplot as plt
import chinese
import xlrd
import xlwt
#匯入了chinese.py來設定漢字,
chinese.set_ch()
"""讀取excel檔案,API見https://xlrd.readthedocs.io/en/latest/api.html"""
filename='wind.xls'							
book_wind=xlrd.open_workbook(filename=filename)
wind_sheet1=book_wind.sheets()[0]					#這個[0]我沒看懂
#讀取第1行標題
title=wind_sheet1.row_values(0)

#讀取第一、二、三列標題以下的資料 col_values(colx,start_row=0,end_row=none)
x=wind_sheet1.col_values(0,1)
y1=wind_sheet1.col_values(1,1)
y2=wind_sheet1.col_values(2,1)

#繪製曲線圖
line1,=plt.plot(x,y1,label='速度場方差')		
line1.set_dashes([2,2,10,2])			#將曲線設定為點劃線,set_dashes([line_space,space_space,line_space,space_space])
line2,y2,label='流量場方差')
line2.set_dashes([2,2])
plt.title('方差曲線',fontsize=16)
plt.legend(loc=4)						#設定圖例位置,4表示右下角
plt.show()

總結

到此這篇關於python讀取excel資料繪製簡單曲線圖的文章就介紹到這了,更多相關python讀取excel資料繪製簡單曲線圖內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!