線圖

簡單的線條圖

StackOverflow 文件

import matplotlib.pyplot as plt

# Data
x = [14,23,23,25,34,43,55,56,63,64,65,67,76,82,85,87,87,95]
y = [34,45,34,23,43,76,26,18,24,74,23,56,23,23,34,56,32,23]

# Create the plot
plt.plot(x, y, 'r-')
# r- is a style code meaning red solid line

# Show the plot
plt.show()

請注意,通常 y 不是 x 的函式,並且 x 中的值不需要排序。以下是未分類 x 值的線圖如下所示:

# shuffle the elements in x
np.random.shuffle(x)
plt.plot(x, y, 'r-')
plt.show()

StackOverflow 文件

資料圖

這類似於散點圖 ,但使用 plot() 函式。這裡程式碼的唯一區別是 style 引數。

plt.plot(x, y, 'b^')
# Create blue up-facing triangles

StackOverflow 文件

資料和線

style 引數可以為標記和線條樣式新增符號:

plt.plot(x, y, 'go--')
# green circles and dashed line

StackOverflow 文件