Matplotlib中的基本圖表包括的元素html
import numpy as np import pandas as pd import matplotlib.pyplot as plt from pandas import Series,DataFrame
x=[1,2,3,4,5] y=[2,4,6,8,10] plt.plot(x,y)
x = np.linspace(-np.pi,np.pi,num=20) y = x**2 plt.plot(x,y)
x
y = np.sin(x) plt.plot(x,y)
一、連續調用屢次plot函數python
plt.plot(x,y) plt.plot(x+2,y+3)
二、也能夠在一個plot函數中傳入多對X,Y值,在一個圖中繪製多個曲線app
plt.plot(x,y,x+1,y-2)
ax1 = plt.subplot(221) ax1.plot(x,y) ax2 = plt.subplot(2,2,2) ax2.plot(x,y) ax3 = plt.subplot(2,2,3) ax3.plot(x,y) ax4 = plt.subplot(2,2,4) ax4.plot(x,y)
參數:dom
- axis - color:支持十六進制顏色 - linestyle: -- -. : - alpha
plt.plot(x,y) plt.grid(axis='both',c='blue')
plt.plot(x,y,c='red',alpha=0.7)
plt.axis([xmin,xmax,ymin,ymax])ide
plt.plot(x,y) plt.axis([-6,6,-2,2]) #plt.axis('off')
關閉座標軸svg
plt.figure(figsize=(6,6)) plt.plot(x,y)
plt.plot(x,y) plt.xlabel('aaa') plt.ylabel('bbb') plt.title('ccc')
兩種傳參方法:函數
plt.plot(x,y,label='aaa') plt.plot(x+2,y+3,label='bbb') plt.legend(loc=0,ncol=2)
- loc參數
字符串 | 數值 | 字符串 | 數值 |
---|---|---|---|
best | 0 | center left | 6 |
upper right | 1 | center right | 7 |
upper left | 2 | lower center | 8 |
lower left | 3 | upper center | 9 |
lower right | 4 | center | 10 |
right | 5 |
- ncol參數
ncol控制圖例中有幾列,在legend中設置ncol字體
fig = plt.figure()---必須放置在繪圖操做以前spa
figure.savefig的參數選項code
fig = plt.figure() plt.plot(x,y,label='aaa') plt.plot(x+2,y+3,label='bbb') plt.legend(loc=0,ncol=2) fig.savefig('./123.png',dpi=500)
plot語句中支持除X,Y之外的參數,以字符串形式存在,來控制顏色、線型、點型等要素,語法形式爲:
plt.plot(X, Y, 'format', ...)
參數color或c
顏色 | 別名 | HTML顏色名 | 顏色 | 別名 | HTML顏色名 |
---|---|---|---|---|---|
藍色 | b | blue | 綠色 | g | green |
紅色 | r | red | 黃色 | y | yellow |
青色 | c | cyan | 黑色 | k | black |
洋紅色 | m | magenta | 白色 | w | white |
alpha參數
參數linestyle或ls
線條風格 | 描述 | 線條風格 | 描述 |
---|---|---|---|
'-' | 實線 | ':' | 虛線 |
'--' | 破折線 | 'steps' | 階梯線 |
'-.' | 點劃線 | 'None' / ',' | 什麼都不畫 |
plt.plot(x,y,ls='steps',lw=10)
linewidth或lw參數
標記 | 描述 | 標記 | 描述 |
---|---|---|---|
's' | 正方形 | 'p' | 五邊形 |
'h' | 六邊形1 | 'H' | 六邊形2 |
'8' | 八邊形 |
標記 | 描述 | 標記 | 描述 |
---|---|---|---|
'.' | 點 | 'x' | X |
'*' | 星號 | '+' | 加號 |
',' | 像素 |
標記 | 描述 | 標記 | 描述 |
---|---|---|---|
'o' | 圓圈 | 'D' | 菱形 |
'd' | 小菱形 | '','None',' ',None | 無 |
標記 | 描述 | 標記 | 描述 |
---|---|---|---|
'1' | 一角朝下的三腳架 | '3' | 一角朝左的三腳架 |
'2' | 一角朝上的三腳架 | '4' | 一角朝右的三腳架 |
plt.plot(x,y,marker='d',markersize=10)
# 繪製線 plt.plot(x1,y1,x2,y2)
# 網格線 plt.grid(True) axes.grid(color,ls,lw,alpha) # 獲取座標系 plt.subplot(n1,n2,n3) # 座標軸標籤 plt.xlabel() plt.ylabel() # 座標系標題 plt.title() # 圖例 plt.legend([names],ncol=2,loc=1) plt.plot(label='name') # 線風格 -- -. : None step # 圖片保存 figure.savefig() # 點的設置 marker markersize markerfacecolor markeredgecolor\width # 座標軸刻度 plt.xticks(刻度列表,刻度標籤列表) plt.yticks() # axes.set_xticks(刻度列表) axes.set_xticklabels(刻度標籤列表)
【直方圖的參數只有一個x!!!不像條形圖須要傳入x,y】
plt.hist()的參數
data = [1,2,3,3,4,2,5] plt.hist(data,bins=10)
返回值 :
1: 直方圖向量,是否歸一化由參數normed設定
2: 返回各個bin的區間範圍
3: 返回每一個bin裏面包含的數據,是一個list
-【條形圖有兩個參數x,y】
bar()、barh()
num = [1,2,3,4,5] count = [2,4,6,8,10] plt.barh(num,count)
barh()
【餅圖也只有一個參數x】
pie()
餅圖適合展現各部分佔整體的比例,條形圖適合比較各部分的大小
普通各部分佔滿餅圖
普通未佔滿餅圖:小數/比例
餅圖陰影、分裂等屬性設置
plt.pie([0.2,0.5])
arr=[11,22,31,15] plt.pie(arr,labels=['a','b','c','d'])
#labeldistance參數設置標籤距離圓心的距離(比例值)
arr=[11,22,31,15] plt.pie(arr,labels=['a','b','c','d'],labeldistance=0.3)
#autopct參數設置比例值小數保留位(%.3f%%);
arr=[11,22,31,15] plt.pie(arr,labels=['a','b','c','d'],labeldistance=0.3,autopct='%.6f%%')
##explode參數設置每一塊頂點距圓心的長度(比例值,列表);
arr=[11,22,31,15] plt.pie(arr,labels=['a','b','c','d'],labeldistance=0.3,shadow=True,explode=[0.2,0.3,0.2,0.4])
#startangle參數設置餅圖起始角度
arr=[11,22,31,15] plt.pie(arr,labels=['a','b','c','d'],startangle=50)
%m.nf m 佔位 n 小數點後保留幾位 f 是以float格式輸出
【散點圖須要兩個參數x,y,但此時x不是表示x軸的刻度,而是每一個點的橫座標!】
scatter()
x = np.random.randint(0,10,size=(20,)) y = np.random.randint(0,10,size=(20,))
plt.scatter(x,y,marker='d',c="rbgy") 設置不一樣的散點顏色
plt.scatter(x,y,c='rgyb')
x = [1,2,3,4,5] y = [2,4,6,8,10] plt.scatter(x,y)