gpt4 book ai didi

python - 如何在 matplotlib 中将文本框直接放置在图例下方?

转载 作者:行者123 更新时间:2023-12-02 08:17:38 28 4
gpt4 key购买 nike

使用matplotlib,我想在图例下方放置一个文本框,其中包含有关该图的一些注释。我的图例位于右侧轴之外。我的计划是找到图例在图形引用框架中的位置,然后使用图形的 text 方法来放置我的注释。但是,我无法弄清楚如何获取这些图例坐标。任何建议或替代计划将不胜感激。

最佳答案

显然,只有在渲染后才能读取图例的位置。坐标将以像素为单位。因此,可以使用fig.add_axes创建一个新轴,该轴将使用图例的坐标和图形的尺寸位于图例的正下方。这是一个例子:

from matplotlib.pyplot import subplots
fig,ax = subplots()
fig.subplots_adjust(right=0.75)
ax.plot([0,1],'.-',label="line1")
ax.plot([0.1,1.1],'.-',label="line2")
leg = ax.legend(bbox_to_anchor=(1.05, 1),loc=2, borderaxespad=0)

fig.canvas.draw() # this draws the figure
# which allows reading final coordinates in pixels
leg_pxls = leg.get_window_extent()
ax_pxls = ax.get_window_extent()
fig_pxls = fig.get_window_extent()

# Converting back to figure normalized coordinates to create new axis:
pad = 0.025
ax2 = fig.add_axes([leg_pxls.x0/fig_pxls.width,
ax_pxls.y0/fig_pxls.height,
leg_pxls.width/fig_pxls.width,
(leg_pxls.y0-ax_pxls.y0)/fig_pxls.height-pad])

# eliminating all the tick marks:
ax2.tick_params(axis='both', left='off', top='off', right='off',
bottom='off', labelleft='off', labeltop='off',
labelright='off', labelbottom='off')

# adding some text:
ax2.text(0.1,0.1,"some text\nabout the\nlines")

生成此数字:

enter image description here

如果不需要,可以轻松关闭框架。

关于python - 如何在 matplotlib 中将文本框直接放置在图例下方?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42299383/

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