Matplotlib中怎么設(shè)置坐標(biāo)軸范圍

小億
312
2024-05-11 18:41:49
欄目: 編程語言

在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)整范圍的大小。

0