溫馨提示×

溫馨提示×

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

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

Python設(shè)置matplotlib.plot的坐標(biāo)軸刻度間隔以及刻度范圍

發(fā)布時間:2020-09-06 19:47:20 來源:腳本之家 閱讀:664 作者:寧寧Fingerstyle 欄目:開發(fā)技術(shù)

一、用默認(rèn)設(shè)置繪制折線圖

import matplotlib.pyplot as plt
 
x_values=list(range(11))
#x軸的數(shù)字是0到10這11個整數(shù)
y_values=[x**2 for x in x_values]
#y軸的數(shù)字是x軸數(shù)字的平方
plt.plot(x_values,y_values,c='green')
#用plot函數(shù)繪制折線圖,線條顏色設(shè)置為綠色
plt.title('Squares',fontsize=24)
#設(shè)置圖表標(biāo)題和標(biāo)題字號
plt.tick_params(axis='both',which='major',labelsize=14)
#設(shè)置刻度的字號
plt.xlabel('Numbers',fontsize=14)
#設(shè)置x軸標(biāo)簽及其字號
plt.ylabel('Squares',fontsize=14)
#設(shè)置y軸標(biāo)簽及其字號
plt.show()
#顯示圖表

這樣制作出的圖表如下圖所示:

Python設(shè)置matplotlib.plot的坐標(biāo)軸刻度間隔以及刻度范圍

我們希望x軸的刻度是0,1,2,3,4……,y軸的刻度是0,10,20,30……,并且希望兩個坐標(biāo)軸的范圍都能再大一點(diǎn),所以我們需要手動設(shè)置。

二、手動設(shè)置坐標(biāo)軸刻度間隔以及刻度范圍

import matplotlib.pyplot as plt
from matplotlib.pyplot import MultipleLocator
#從pyplot導(dǎo)入MultipleLocator類,這個類用于設(shè)置刻度間隔
 
x_values=list(range(11))
y_values=[x**2 for x in x_values]
plt.plot(x_values,y_values,c='green')
plt.title('Squares',fontsize=24)
plt.tick_params(axis='both',which='major',labelsize=14)
plt.xlabel('Numbers',fontsize=14)
plt.ylabel('Squares',fontsize=14)
x_major_locator=MultipleLocator(1)
#把x軸的刻度間隔設(shè)置為1,并存在變量里
y_major_locator=MultipleLocator(10)
#把y軸的刻度間隔設(shè)置為10,并存在變量里
ax=plt.gca()
#ax為兩條坐標(biāo)軸的實(shí)例
ax.xaxis.set_major_locator(x_major_locator)
#把x軸的主刻度設(shè)置為1的倍數(shù)
ax.yaxis.set_major_locator(y_major_locator)
#把y軸的主刻度設(shè)置為10的倍數(shù)
plt.xlim(-0.5,11)
#把x軸的刻度范圍設(shè)置為-0.5到11,因?yàn)?.5不滿一個刻度間隔,所以數(shù)字不會顯示出來,但是能看到一點(diǎn)空白
plt.ylim(-5,110)
#把y軸的刻度范圍設(shè)置為-5到110,同理,-5不會標(biāo)出來,但是能看到一點(diǎn)空白
plt.show()

繪制的結(jié)果如圖所示:

Python設(shè)置matplotlib.plot的坐標(biāo)軸刻度間隔以及刻度范圍

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

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

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

AI