gpt4 book ai didi

python - 是否可以有多个字幕?

转载 作者:行者123 更新时间:2023-12-03 08:47:27 24 4
gpt4 key购买 nike

如果我有一个带有子图的 matplotlib 图形,是否可以有多个 suptitle? (Kind of like the loc='center', loc='left', and loc='right' arguments for a regular title)。

在下面的示例中,suptitle 的多个实例被覆盖,并且图中仅显示最后一个副标题。

import matplotlib.pyplot as plt
fig, (ax1, ax2) = plt.subplots(1,2)

plt.suptitle('center title')
plt.suptitle('right title', x=.8)
plt.suptitle('left title', x=.2)

enter image description here

最佳答案

我想出的最佳解决方案是向图中添加文本,并使用参数 transform=fig.transFigure 根据图形坐标调整位置。

import matplotlib.pyplot as plt
fig, (ax1, ax2) = plt.subplots(1,2)

plt.text(.5, 1, 'center title', transform=fig.transFigure, horizontalalignment='center')
plt.text(.8, 1, 'right title', transform=fig.transFigure, horizontalalignment='center')
plt.text(.2, 1, 'left title', transform=fig.transFigure, horizontalalignment='center')

enter image description here

关于python - 是否可以有多个字幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60840293/

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