溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python如何設(shè)置xlabel,ylabel坐標(biāo)軸字體大小,字體類型

發(fā)布時間:2021-07-30 13:51:19 來源:億速云 閱讀:1537 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)python如何設(shè)置xlabel,ylabel坐標(biāo)軸字體大小,字體類型的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

具體如下:

#--coding:utf-8--
import matplotlib.pyplot as plt
 
#數(shù)據(jù)設(shè)置
x1 =[0,5000,10000, 15000, 20000, 25000, 30000, 35000, 40000, 45000, 50000, 55000];
y1=[0, 223, 488, 673, 870, 1027, 1193, 1407, 1609, 1791, 2113, 2388];
 
x2 =[0,5000,10000, 15000, 20000, 25000, 30000, 35000, 40000, 45000, 50000, 55000];
y2=[0, 214, 445, 627, 800, 956, 1090, 1281, 1489, 1625, 1896, 2151];
 
#設(shè)置輸出的圖片大小
figsize = 11,9
figure, ax = plt.subplots(figsize=figsize)
 
#在同一幅圖片上畫兩條折線
A,=plt.plot(x1,y1,'-r',label='A',linewidth=5.0)
B,=plt.plot(x2,y2,'b-.',label='B',linewidth=5.0)
 
#設(shè)置圖例并且設(shè)置圖例的字體及大小
font1 = {'family' : 'Times New Roman',
'weight' : 'normal',
'size' : 23,
}
legend = plt.legend(handles=[A,B],prop=font1)
 
#設(shè)置坐標(biāo)刻度值的大小以及刻度值的字體
plt.tick_params(labelsize=23)
labels = ax.get_xticklabels() + ax.get_yticklabels()
[label.set_fontname('Times New Roman') for label in labels]
 
#設(shè)置橫縱坐標(biāo)的名稱以及對應(yīng)字體格式
font2 = {'family' : 'Times New Roman',
'weight' : 'normal',
'size' : 30,
}
plt.xlabel('round',font2)
plt.ylabel('value',font2)
 
#將文件保存至文件中并且畫出圖
plt.savefig('figure.eps')
plt.show()

實例1:為二維子圖設(shè)置坐標(biāo)軸標(biāo)題

#!/usr/bin/python3
#code-python(3.6)
import matplotlib.pyplot as plt
fig = plt.figure() #設(shè)置畫布
#將畫布分為2行2列,共4個子圖,并定位在第1個子圖
ax = fig.add_subplot(2,2,1)  #返回第1個子圖
ax.set_xlabel('Month') #為子圖設(shè)置橫軸標(biāo)題
ax.set_ylabel('Year') #為子圖設(shè)置縱軸標(biāo)題
plt.show()

函數(shù)說明

#函數(shù)中的參數(shù)的值均為默認(rèn)的參數(shù)值
matplotlib.axes.Axes.set_xlabel(xlabel, fontdict=None, labelpad=None, **kwargs)

實例2:為三維子圖設(shè)置坐標(biāo)軸標(biāo)題

#!/usr/bin/python3
#code-python(3.6)
import matplotlib.pyplot as plt
fig = plt.figure() #設(shè)置畫布
from mpl_toolkits.mplot3d import Axes3D
#將畫布分為2行1列,共2個子圖,并定位在第2個子圖
ax = fig.add_subplot(212, projection='3d')
ax.set_xlabel('Month') #為子圖設(shè)置x軸標(biāo)題
ax.set_ylabel('Year') #為子圖設(shè)置y軸標(biāo)題
ax.set_zlabel('Sales') #為子圖設(shè)置z軸標(biāo)題
plt.show()

感謝各位的閱讀!關(guān)于“python如何設(shè)置xlabel,ylabel坐標(biāo)軸字體大小,字體類型”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI