plt.plot中文
时间: 2024-12-24 13:14:33 浏览: 6
matplotlib 曲线图 和 折线图 plt.plot()实例
5星 · 资源好评率100%
`plt.plot` 是 Python 的 Matplotlib 库中的一个常用函数,用于创建二维数据点图。它主要用于绘制线图,将一列或多列数据以线条的形式展示出来,帮助分析数据的趋势和模式。当你需要可视化某个序列的数据时,比如时间序列、实验结果等,可以使用 `plt.plot(x, y)`,其中 `x` 是 x 轴的值,`y` 是对应的 y 轴值,可以是一个数组或者列表。
你可以通过设置参数来调整线型(如实线、虚线)、颜色、标记点样式等。例如:
```python
import matplotlib.pyplot as plt
# 创建两个随机数据系列
x = [1, 2, 3, 4, 5]
y1 = [2, 4, 6, 8, 10]
y2 = [1, 3, 5, 7, 9]
# 使用plt.plot绘制两条线
plt.plot(x, y1, label='Series 1') # 线1
plt.plot(x, y2, linestyle='--', color='r', label='Series 2') # 线2,虚线红色
# 添加标题和标签
plt.title('Example Plot')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 添加图例
plt.legend()
# 显示图形
plt.show()
```
阅读全文