gpt4 book ai didi

python - 在Python中保存绘图仅创建一个空的pdf文档

转载 作者:行者123 更新时间:2023-11-30 23:22:37 26 4
gpt4 key购买 nike

我正在使用官方 matplotlib 页面 http://matplotlib.org/examples/api/barchart_demo.html 上存在的示例代码

#!/usr/bin/env python
# a bar plot with errorbars
import numpy as np
import matplotlib.pyplot as plt

N = 5
menMeans = (20, 35, 30, 35, 27)
menStd = (2, 3, 4, 1, 2)

ind = np.arange(N) # the x locations for the groups
width = 0.35 # the width of the bars

fig, ax = plt.subplots()
rects1 = ax.bar(ind, menMeans, width, color='r', yerr=menStd)

womenMeans = (25, 32, 34, 20, 25)
womenStd = (3, 5, 2, 3, 3)
rects2 = ax.bar(ind+width, womenMeans, width, color='y', yerr=womenStd)

# add some
ax.set_ylabel('Scores')
ax.set_title('Scores by group and gender')
ax.set_xticks(ind+width)
ax.set_xticklabels( ('G1', 'G2', 'G3', 'G4', 'G5') )

ax.legend( (rects1[0], rects2[0]), ('Men', 'Women') )

def autolabel(rects):
# attach some text labels
for rect in rects:
height = rect.get_height()
ax.text(rect.get_x()+rect.get_width()/2., 1.05*height, '%d'%int(height),
ha='center', va='bottom')

autolabel(rects1)
autolabel(rects2)

plt.show()

该图的显示绝对正确。但是,如果我想保存它,请在代码底部使用以下命令,它不会保存绘图。

plt.savefig("result.pdf")

是不是我哪里做错了?

最佳答案

plt.savefig("result.pdf") 行移到 plt.show() 之前,应将绘图正确保存为 pdf 文件。

您可能正在使用交互式后端。在plt.show()之后,会弹出一个包含绘图的窗口。如果随后关闭窗口,绘图就会消失(类似于 plt.close() 调用)。因此,如果您在关闭绘图窗口后执行此操作,则 plt.savefig() 不会保存任何内容。

关于python - 在Python中保存绘图仅创建一个空的pdf文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24422133/

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