python批量绘图并保存
时间: 2023-10-25 21:24:15 浏览: 165
Python绘制并保存指定大小图像的方法
你可以使用Python的matplotlib库来批量绘图并保存。下面是一个示例代码:
```python
import matplotlib.pyplot as plt
import os
# 读取数据
x = [1, 2, 3]
y1 = [4, 5, 6]
y2 = [7, 8, 9]
# 绘制图形
plt.plot(x, y1)
plt.plot(x, y2)
# 设置标题和标签
plt.title("My Plot")
plt.xlabel("X Label")
plt.ylabel("Y Label")
# 创建文件夹
if not os.path.exists("plots"):
os.makedirs("plots")
# 保存图形
plt.savefig("plots/myplot.png")
plt.savefig("plots/myplot.pdf")
```
上述代码演示了如何绘制两个曲线图并将它们保存为PNG和PDF格式的文件。你只需要更新x、y1和y2的值以及文件名和路径就可以批量生成多个图表。
阅读全文