手把手帶你瞭解Python數據分析–matplotlib
柱形圖
bar()函數繪制柱形圖
import matplotlib.pyplot as pl x = [1,2,3,4,5,6,7] y = [15,69,85,12,36,95,11] pl.bar(x,y) pl.show()
bar()函數的參數width和color設置每根柱子的寬度和顏色
有中文時要添加
pl.rcParams[‘font.sans-serif’] = [‘FangSong’]
有負號時要添加
pl.rcParams[‘axes.unicode_minus’] = False
import matplotlib.pyplot as pl pl.rcParams['font.sans-serif'] = ['FangSong'] x = ['一','二','三','四','五'] y = [25,63,98,20,15] pl.bar(x,y,width=0.5,color='red') pl.show()
條形圖
barh()函數可繪制條形圖
參數height設置條形的高度
import matplotlib.pyplot as pl pl.rcParams['font.sans-serif'] = ['FangSong'] x = ['一','二','三','四','五'] y = [25,63,98,20,15] pl.barh(x,y,height=0.5,color='red') pl.show()
折線圖
plot()函數可繪制折線圖
import matplotlib.pyplot as pl pl.rcParams['font.sans-serif'] = ['FangSong'] x = ['一','二','三','四','五'] y = [25,63,98,20,15] pl.plot(x,y,linewidth=2,linestyle='-',color='red',marker='*',markersize=10) pl.show()
參數linewidth用於設置折線的粗細(單位為“點”)
參數linestyle用於設置折線的線型
marker= ‘*’表示設置數據標記的樣式為五角星
markersize=10表示設置數據標記的大小為10點
餅圖和圓環圖
pie()函數可繪制餅圖
import matplotlib.pyplot as pl pl.rcParams['font.sans-serif'] = ['FangSong'] x = ['一','二','三','四','五'] y = [25,63,98,20,15] pl.pie(y,labels=x,labeldistance=1,autopct='%.2f%%',pctdistance=1.2) pl.show()
參數labels用於設置每一個餅圖塊的標簽
參數labeldistance用於設置每一個餅圖塊的標簽與中心的距離
參數autopct用於設置百分比數值的格式
參數pctdistance用於設置百分比數值與中心的距離
分離餅圖塊
import matplotlib.pyplot as pl pl.rcParams['font.sans-serif'] = ['FangSong'] x = ['一','二','三','四','五'] y = [25,63,98,20,15] pl.pie(y,labels=x,labeldistance=1,autopct='%.2f%%',pctdistance=1.2,explode=[0,0,0,0,0.3],startangle=90,counterclock=False) pl.show()
參數explode用於設置每一個餅圖塊與圓心的距離,其值通常是一個列表,列表的元素個數與餅圖塊的數量相同。這裡設置為[0, 0, 0, 0, 0, 0.3],第5個元素為0.3,其他元素均為0,表示將第5個餅圖塊分離。
參數startangle用於設置第1個餅圖塊的初始角度
參數counterclock用於設置各個餅圖塊是逆時針排列還是順時針排列,為False時表示順時針排列,為True時表示逆時針排列。
圓環圖
import matplotlib.pyplot as pl pl.rcParams['font.sans-serif'] = ['FangSong'] x = ['一','二','三','四','五'] y = [25,63,98,20,15] pl.pie(y,labels=x,labeldistance=1,autopct='%.2f%%',pctdistance=1.2,explode=[0,0,0,0,0.3],startangle=90,counterclock=False, wedgeprops={'width':0.5,'linewidth':2,'edgecolor':'white'}) pl.show()
wedgeprops={‘width’: 0.5, ‘linewidth’:2, ‘edgecolor’: ‘white’}
表示設置餅圖塊的環寬(圓環的外圓半徑減去內圓半徑)占外圓半徑的比例為0.5
邊框粗細為2
邊框顏色為白色。
將餅圖塊的環寬占比設置為小於1的數(這裡為0.3)就能繪制出圓環圖
總結
本篇文章就到這裡瞭,希望能給你帶來幫助,也希望您能夠多多關註WalkonNet的更多內容!
推薦閱讀:
- Python數據分析之 Matplotlib 餅圖繪制
- python用matplotlib可視化繪圖詳解
- python之 matplotlib和pandas繪圖教程
- Python數據分析應用之Matplotlib數據可視化詳情
- Python Matplotlib數據可視化模塊使用詳解