线图

简单的线条图

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 文档