如何使用Matplotlib繪制散點(diǎn)圖

小億
89
2024-05-20 12:35:37

要使用Matplotlib繪制散點(diǎn)圖,首先需要導(dǎo)入Matplotlib庫(kù),并創(chuàng)建一個(gè)Figure對(duì)象和一個(gè)Axes對(duì)象。然后使用Axes對(duì)象的scatter()方法來(lái)繪制散點(diǎn)圖。

以下是一個(gè)簡(jiǎn)單的示例代碼來(lái)繪制一個(gè)簡(jiǎn)單的散點(diǎn)圖:

import matplotlib.pyplot as plt

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

# 創(chuàng)建一個(gè)Figure對(duì)象和一個(gè)Axes對(duì)象
fig, ax = plt.subplots()

# 繪制散點(diǎn)圖
ax.scatter(x, y)

# 設(shè)置圖表標(biāo)題和坐標(biāo)軸標(biāo)簽
ax.set_title('Scatter Plot Example')
ax.set_xlabel('X-axis')
ax.set_ylabel('Y-axis')

# 顯示圖表
plt.show()

運(yùn)行以上代碼將會(huì)繪制一個(gè)簡(jiǎn)單的散點(diǎn)圖,其中x軸為1到5的整數(shù),y軸為對(duì)應(yīng)x值的平方。您可以根據(jù)需要調(diào)整數(shù)據(jù)和圖表屬性來(lái)繪制不同的散點(diǎn)圖。

0