溫馨提示×

matplotlib中plot函數(shù)怎么使用

小億
123
2024-01-22 09:55:18
欄目: 編程語言

Matplotlib中的plot函數(shù)用于繪制二維圖形。它的基本用法如下:

import matplotlib.pyplot as plt

# 創(chuàng)建x軸數(shù)據(jù)
x = [1, 2, 3, 4, 5]
# 創(chuàng)建y軸數(shù)據(jù)
y = [2, 4, 6, 8, 10]

# 使用plot函數(shù)繪制線圖
plt.plot(x, y)

# 設(shè)置標(biāo)題
plt.title("Line Plot")
# 設(shè)置x軸標(biāo)簽
plt.xlabel("x")
# 設(shè)置y軸標(biāo)簽
plt.ylabel("y")

# 顯示圖形
plt.show()

plot函數(shù)接受兩個參數(shù),第一個參數(shù)是x軸數(shù)據(jù),第二個參數(shù)是y軸數(shù)據(jù)。在上面的示例中,x軸數(shù)據(jù)是[1, 2, 3, 4, 5],y軸數(shù)據(jù)是[2, 4, 6, 8, 10]。plot函數(shù)會根據(jù)這些數(shù)據(jù)繪制一條線。

在繪制圖形之后,可以使用其他函數(shù)來設(shè)置標(biāo)題、標(biāo)簽等圖形屬性。最后,通過plt.show()函數(shù)來顯示圖形。

除了繪制線圖,plot函數(shù)還可以繪制散點圖、柱狀圖等。更多詳細(xì)的用法可以參考Matplotlib的官方文檔。

0