用matplotlib画图,上面是图,下面是对图的文字描述。
时间: 2023-12-17 13:02:01 浏览: 189
Matlab 画图
5星 · 资源好评率100%
好的,下面是一个简单的例子:
```
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 画图
plt.plot(x, y)
plt.title('Example Plot')
plt.xlabel('X Axis')
plt.ylabel('Y Axis')
# 添加文本描述
plt.figtext(0.5, 0.01, "This is a simple line plot.", ha="center", fontsize=10)
# 显示图像
plt.show()
```
这段代码会生成一条直线,并且在图像底部中央添加一段文本描述。你可以根据自己的需求修改其中的数据和文本内容,以及调整字体大小、对齐方式等参数。
阅读全文