1、折線圖
import matplotlib as mlb from matplotlib import pylab as pl # 折線圖 # 分別建立x,y座標 x = [1,3,5,7,6,9,10,13,16] y = [3,4,5,7,9,0,1,2,3]
# 設定標題
pl.title("plot of x ")
# 將座標內容增加進表格 # 第三個引數是展示的顏色 pl.plot(x,y,'r') # 將圖表展示 pl.show()
顏色引數與對應的顏色:
b:blue g:green r:red y:yellow k:black w:white
結果:
2、散點圖
散點圖的寫法和折線圖一致,只需要在顏色引數中增加o即可,eg:pl.plot(x, y)改成pl.plot(x, y, 'or')
3、柱狀體的生成,用的是bar
1 from matplotlib import pylab as pl 2 3 4 x = [1,3,5,7,6,9,10,13,16] 5 y = [3,4,5,7,9,2,1,2,3] 6 7 pl.title("bar of x ") 8 pl.bar(x,y) 9 10 pl.show()
結果:
4、餅狀圖,pie
1 from matplotlib import pylab as pl 2 3 4 x = [7,6,9,10,13,16] 5 6 pl.title("pie of x ") 7 pl.pie(x) 8 9 pl.show()
結果: