gpt4 book ai didi

python - matplotlib/IPython Notebook 创建空的 PNG 或 PDF 图像

转载 作者:太空宇宙 更新时间:2023-11-04 07:41:46 26 4
gpt4 key购买 nike

此代码使用 matplotlib 生成箱线图。该图在 IPython Notebook 中正确显示(见附图)。但是,savefig 创建了一个空图像。我尝试了文件结尾 .png.pdf,但这两者都会发生。代码有什么问题?

fig = matplotlib.pyplot.gcf()


GCEMA = (0.26, 0.26, 0.30, 0.51, 0.55, 0.34)
CEM = (0.26, 0.23, 0.30, 0.49, 0.35, 0.24)
selSCAN = (0.19, 0.35, 0.28, 0.45, 0.41, 0.52)
selSCANAD = (0.26, 0.52, 0.37, 0.46, 0.46, 0.47)
N=6
pos = np.arange(N)
ax = plt.axes()

ax.bar(0.6*pos, GCEMA, width = 0.10, color='green', label='GCE-MA')
ax.bar(0.6*pos+0.1, CEM, 0.10, color='blue', label='CE-M')
ax.bar(0.6*pos+0.2, selSCAN, 0.10, color='red', label='selSCAN-ND')
ax.bar(0.6*pos+0.3, selSCANAD, 0.10, color='yellow', label='selSCAN-AD')
ylabel("quality [$\phi$]", fontsize=14)
fig.set_size_inches(5,4)
xticks(rotation=15)
xticks([0.2,0.8,1.4,2,2.6,3.2],['PGP','CAIDA','coPapersDBLP','soc-LiveJournal','uk-2002','eu-2005'])
legend(loc=4, fontsize=10)
show()
savefig("cond.png")

enter image description here

最佳答案

您可能需要在 show 之前使用 savefig

关于python - matplotlib/IPython Notebook 创建空的 PNG 或 PDF 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19046458/

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