在Matplotlib中,可以使用plt.xlim()
和plt.ylim()
函數(shù)來設(shè)置x軸和y軸的范圍。示例代碼如下:
import matplotlib.pyplot as plt
# 創(chuàng)建數(shù)據(jù)
x = [1, 2, 3, 4, 5]
y = [10, 20, 15, 25, 30]
# 繪制折線圖
plt.plot(x, y)
# 設(shè)置x軸和y軸的范圍
plt.xlim(0, 6) # 設(shè)置x軸范圍為0到6
plt.ylim(0, 35) # 設(shè)置y軸范圍為0到35
# 顯示圖形
plt.show()
在上面的示例中,plt.xlim(0, 6)
設(shè)置了x軸的范圍為0到6,plt.ylim(0, 35)
設(shè)置了y軸的范圍為0到35。您可以根據(jù)需要調(diào)整范圍的大小。