matplotlib库plot绘图设置标题
时间: 2023-09-08 19:17:16 浏览: 76
matplotlib subplots 设置总图的标题方法
5星 · 资源好评率100%
你可以使用 matplotlib.pyplot 中的 title() 方法来设置绘图的标题,例如:
```python
import matplotlib.pyplot as plt
# 绘制一个简单的折线图
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
# 设置标题
plt.title("My Plot")
# 显示图形
plt.show()
```
这样就可以将标题设置为 "My Plot"。
阅读全文