gpt4 book ai didi

python - 从 ipython notebook 保存绘图会生成剪切图像

转载 作者:太空狗 更新时间:2023-10-30 03:00:19 24 4
gpt4 key购买 nike

我正在使用 ipython notebook 绘制一个带有 2 个 ylabels 的绘图,当在笔记本中可视化时图像看起来不错。

这是我的做法:

import matplotlib.pyplot as plt 

fig, ax1 = plt.subplots()
plt.title('TITLE')
plt.xlabel('X')

plt.plot(x, y1, '-', color='blue', label='SNR')
ax1.set_ylabel('y1', color='blue')
for tl in ax1.get_yticklabels():
tl.set_color('blue')

ax2 = ax1.twinx()
plt.plot(x, y2, '--', color='red', label='Ngal')
ax2.set_ylabel('y2', color='red')
for tl in ax2.get_yticklabels():
tl.set_color('red')

问题是当我尝试用命令保存它时

plt.savefig('output.png', dpi=300)

因为输出将是在右侧剪切的图像:如果正确的数字很大,基本上我看不到正确的 ylabel。

最佳答案

默认情况下,matplotlib 为 x 和 y 轴标签和刻度标签留出的空间非常小,因此您需要调整图形以包含更多填充。幸运的是,这再简单不过了。在你调用savefig之前,你可以调用call

fig.tight_layout()
plt.savefig('output.png', dpi=300)

或者,您可以将 bbox_inches='tight' 传递给 savefig,它也会调整图形以包含所有 x 和 y 标签

plt.savefig('output.png', dpi=300, bbox_inches='tight')

关于python - 从 ipython notebook 保存绘图会生成剪切图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29803224/

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