gpt4 book ai didi

python - Matplotlib:在其 bbox 中居中文本

转载 作者:太空狗 更新时间:2023-10-30 01:07:00 25 4
gpt4 key购买 nike

我必须绘制一些数据和一些垂直线来分隔有趣的间隔,然后我想使用 text 添加一些标签。我无法完全避免标签与数据或垂直线重叠,因此我决定在文本周围放置一个 bbox 以保持其可读性。我的问题是我无法将它在此框内居中对齐,这在我看来是清晰可见且非常烦人的。

我正在做这样的事情:

import numpy
import matplotlib
import matplotlib.pyplot as plt

fig=plt.figure()
plot=fig.add_subplot(111)
x=numpy.linspace(1,10,50)
y=numpy.random.random(50)
plot.plot(x,y)
plot.text(4.5,.5,'TEST TEST',\
bbox={'facecolor':'white','alpha':1,'edgecolor':'none','pad':1})
plot.axvline(5,color='k',linestyle='solid')
plt.show()

创建以下图: enter image description here

很明显,文本没有在其 bbox 中居中。我怎样才能改变这个?我在 Google 上花了很多时间,但找不到任何东西。

编辑:

感谢到目前为止的建议。

This表明我所看到的实际上是期望的行为。显然,在 matplotlib 的新版本中选择 bbox 是考虑到它包含的文本的可能最大下降('g' 的下降)。

当文本中出现“g”时,这确实看起来不错: enter image description here不幸的是,在我的例子中没有“g”或任何具有类似血统的东西。有没有人有任何进一步的想法?

最佳答案

使用文本属性 ha 和 va:

plot.text(5.5,.5,'TEST TEST TEST TEST',
bbox={'facecolor':'white','alpha':1,'edgecolor':'none','pad':1},
ha='center', va='center')

要检查,请在绘图的中心画线:

plot.axvline(5.5,color='k',linestyle='solid')
plot.axhline(0.5,color='k',linestyle='solid')

关于python - Matplotlib:在其 bbox 中居中文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34087382/

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