首页 >后端开发 >Python教程 >如何防止Matplotlib中图例被截断并保持数据可见性?

如何防止Matplotlib中图例被截断并保持数据可见性?

Barbara Streisand
Barbara Streisand原创
2024-10-18 12:20:03491浏览

How to Prevent Cut-off Legend in Matplotlib and Maintain Data Visibility?

通过调整图形框大小来解决 Matplotlib 中的图例截断问题

在 Matplotlib 中,将图例移到绘图轴之外通常会导致其被图形框截断。虽然缩小轴被建议作为一种解决方案,但它会降低数据可见性,尤其是在呈现具有大量图例条目的复杂绘图时。

正如 Benjamin Root 在 Matplotlib 邮件列表上的回复中所强调的,更有效的方法包括修改 savefig 调用以将图例合并为额外的艺术家:

fig.savefig('samplefigure', bbox_extra_artists=(lgd,), bbox_inches='tight')

此方法与使用ight_layout 类似,使 savefig 在计算图形框大小时能够考虑图例。

以下增强的代码示例演示了解决方案:

import matplotlib.pyplot as plt
import numpy as np

plt.gcf().clear()
x = np.arange(-2*np.pi, 2*np.pi, 0.1)
fig = plt.figure(1)
ax = fig.add_subplot(111)
ax.plot(x, np.sin(x), label='Sine')
ax.plot(x, np.cos(x), label='Cosine')
ax.plot(x, np.arctan(x), label='Inverse tan')
handles, labels = ax.get_legend_handles_labels()
lgd = ax.legend(handles, labels, loc='upper center', bbox_to_anchor=(0.5,-0.1))
text = ax.text(-0.2,1.05, "Aribitrary text", transform=ax.transAxes)
ax.set_title("Trigonometry")
ax.grid('on')
fig.savefig('samplefigure', bbox_extra_artists=(lgd,text), bbox_inches='tight')

现在可以动态调整图形框大小以适应图例,防止其被截断,同时保持数据可见性。

以上是如何防止Matplotlib中图例被截断并保持数据可见性?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn