目錄
- 柱形圖
- 條形圖
- 折線圖
- 餅圖和圓環(huán)圖
- 總結(jié)
柱形圖
bar()函數(shù)繪制柱形圖
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()函數(shù)的參數(shù)width和color設(shè)置每根柱子的寬度和顏色
有中文時要添加
pl.rcParams['font.sans-serif'] = ['FangSong']
有負(fù)號時要添加
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()函數(shù)可繪制條形圖
參數(shù)height設(shè)置條形的高度
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()函數(shù)可繪制折線圖
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()
參數(shù)linewidth用于設(shè)置折線的粗細(xì)(單位為“點”)
參數(shù)linestyle用于設(shè)置折線的線型
marker= '*'表示設(shè)置數(shù)據(jù)標(biāo)記的樣式為五角星
markersize=10表示設(shè)置數(shù)據(jù)標(biāo)記的大小為10點
餅圖和圓環(huán)圖
pie()函數(shù)可繪制餅圖
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()
參數(shù)labels用于設(shè)置每一個餅圖塊的標(biāo)簽
參數(shù)labeldistance用于設(shè)置每一個餅圖塊的標(biāo)簽與中心的距離
參數(shù)autopct用于設(shè)置百分比數(shù)值的格式
參數(shù)pctdistance用于設(shè)置百分比數(shù)值與中心的距離
分離餅圖塊
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()
參數(shù)explode用于設(shè)置每一個餅圖塊與圓心的距離,其值通常是一個列表,列表的元素個數(shù)與餅圖塊的數(shù)量相同。這里設(shè)置為[0, 0, 0, 0, 0, 0.3],第5個元素為0.3,其他元素均為0,表示將第5個餅圖塊分離。
參數(shù)startangle用于設(shè)置第1個餅圖塊的初始角度
參數(shù)counterclock用于設(shè)置各個餅圖塊是逆時針排列還是順時針排列,為False時表示順時針排列,為True時表示逆時針排列。
圓環(huán)圖
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'}
表示設(shè)置餅圖塊的環(huán)寬(圓環(huán)的外圓半徑減去內(nèi)圓半徑)占外圓半徑的比例為0.5
邊框粗細(xì)為2
邊框顏色為白色。
將餅圖塊的環(huán)寬占比設(shè)置為小于1的數(shù)(這里為0.3)就能繪制出圓環(huán)圖
總結(jié)
本篇文章就到這里了,希望能給你帶來幫助,也希望您能夠多多關(guān)注腳本之家的更多內(nèi)容!
您可能感興趣的文章:- Python的Matplotlib庫圖像復(fù)現(xiàn)學(xué)習(xí)
- Python中matplotlib如何改變畫圖的字體
- Python繪圖之詳解matplotlib
- python數(shù)據(jù)可視化之matplotlib.pyplot基礎(chǔ)以及折線圖
- Python 數(shù)據(jù)科學(xué) Matplotlib圖庫詳解
- python中Matplotlib繪制直線的實例代碼
- 教你用Python matplotlib庫制作簡單的動畫
- python圖像處理基本操作總結(jié)(PIL庫、Matplotlib及Numpy)
- 用Python的繪圖庫(matplotlib)繪制小波能量譜
- python通過Matplotlib繪制常見的幾種圖形(推薦)