1. 程式人生 > >座標軸設定01--python庫--matplotlib

座標軸設定01--python庫--matplotlib

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(-3,3,50)#從-3到3設定50個點
#設定兩個函式
y1 = 2 * x + 1
y2 = x ** 2

plt.figure()
plt.plot(x,y2)
plt.plot(x,y1,color = 'red',linewidth = 1.0,linestyle = '--')

plt.xlim((-1,2))#設定座標軸
plt.ylim((-2,3))
plt.xlabel('I am x')#解釋座標軸資訊
plt.ylabel('I am y
') new_ticks = np.linspace(-1,2,5) print(new_ticks) plt.xticks(new_ticks)#改變座標軸的顯示 # plt.yticks([-2,-1.8,-1,1.22,3] # ,['really bad','bad','normal','good','really good']) plt.yticks([-2,-1.8,-1,1.22,3] ,[r'$really\ bad$','$bad$','$normal$','$good$','$really\ good$'])#設定斜體字型 #
方法:\加表示方式如數學的 阿爾法 \alpha plt.show()