python plt画图并保存
时间: 2023-10-25 09:20:08 浏览: 118
可以使用 Matplotlib 库来画图并保存。
以下是一个简单的示例代码,用于画一个简单的折线图,并将其保存为 PNG 格式的文件:
```python
import matplotlib.pyplot as plt
# 创建数据
x_values = [1, 2, 3, 4, 5]
y_values = [1, 4, 9, 16, 25]
# 设置图形大小和标题
plt.figure(figsize=(10, 6))
plt.title("Square Numbers", fontsize=24)
# 设置坐标轴标签
plt.xlabel("Value", fontsize=14)
plt.ylabel("Square of Value", fontsize=14)
# 绘制折线图
plt.plot(x_values, y_values, linewidth=3)
# 设置刻度标记的大小
plt.tick_params(axis='both', labelsize=14)
# 保存图表为 PNG 格式的文件
plt.savefig('squares_plot.png', bbox_inches='tight')
```
在这个示例代码中,我们首先创建了两个包含数据的列表 `x_values` 和 `y_values`。然后,我们设置了图形的大小和标题,并为坐标轴添加了标签。接下来,我们使用 `plt.plot()` 方法绘制了折线图。最后,我们使用 `plt.savefig()` 方法将图表保存为 PNG 格式的文件,并指定了 `bbox_inches='tight'` 参数来确保图表中的所有内容都被保存。
阅读全文