溫馨提示×

Matplotlib中怎么創(chuàng)建一個簡單的折線圖

小億
85
2024-05-11 17:14:46
欄目: 編程語言

要創(chuàng)建一個簡單的折線圖,你可以使用Matplotlib庫中的plt.plot()函數(shù)。

下面是一個示例代碼,展示如何創(chuàng)建一個簡單的折線圖:

import matplotlib.pyplot as plt

# 設(shè)置數(shù)據(jù)
x = [1, 2, 3, 4, 5]
y = [2, 3, 5, 7, 11]

# 創(chuàng)建折線圖
plt.plot(x, y)

# 添加標(biāo)題和標(biāo)簽
plt.title('Simple Line Plot')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')

# 顯示圖形
plt.show()

運(yùn)行這段代碼,將會生成一個簡單的折線圖,其中x軸對應(yīng)的數(shù)據(jù)為1到5,y軸對應(yīng)的數(shù)據(jù)為2, 3, 5, 7, 11。你可以根據(jù)自己的需求修改數(shù)據(jù)和樣式來創(chuàng)建不同的折線圖。

0