gpt4 book ai didi

python - 如何在 Python 的 Matplotlib 中保存图形

转载 作者:行者123 更新时间:2023-12-05 01:11:36 27 4
gpt4 key购买 nike

我正在尝试将我在 Matplotlib 中的图形保存到一个文件中,但是当我运行命令来保存图像时,它没有给出任何错误,但我看不到该文件。

plt.savefig('Traveling Salesmen Graph.png')

最佳答案

pyplot 跟踪“当前图形”,并且在需要图形的库上调用的函数对其进行操作,但您也可以通过调用图形对象上的 savefig() 来更明确.

https://pythonspot.com/matplotlib-save-figure-to-image-file/为例:

import matplotlib
import matplotlib.pyplot as plt
import numpy as np

y = [2,4,6,8,10,12,14,16,18,20]
x = np.arange(10)
fig = plt.figure()
ax = plt.subplot(111)
ax.plot(x, y, label='$y = numbers')
plt.title('Legend inside')
ax.legend()
#plt.show()

fig.savefig('plot.png')

以这种方式明确应该可以解决您的问题。

有关对“当前图形”进行操作的 pyplot 函数的引用,请参阅:https://matplotlib.org/3.2.1/api/_as_gen/matplotlib.pyplot.html

关于python - 如何在 Python 的 Matplotlib 中保存图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62868765/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com