gpt4 book ai didi

python - 是否有使用 matplotlib 指定饼图中标题的位置?

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

我不知道如何使用matplotlib指定标题的位置。我希望标题离标签远一点,但我不知道如何设置。

labels = df03['new_sentiment']
count = df03['count']

fig1, ax1 = plt.subplots()
ax1.pie(count, labels=labels, autopct='%1.1f%%')
ax1.axis('equal')
plt.title('7D-prior-3MD_sem_sen')
plt.savefig('04_7D-prior-3MD_sem_sen.tiff', dpi=300, format='tiff', bbox_inches='tight')

enter image description here

最佳答案

您可以简单地向 plt.title() 添加一个“pad”参数:

import matplotlib.pyplot as plt
count = [3, 4, 5]
labels = ['Neutral', 'Negative', 'Positive']
fig1, ax1 = plt.subplots()
ax1.pie(count, labels=labels, autopct='%1.1f%%')
ax1.axis('equal')
plt.title('7D-prior-3MD_sem_sen', pad=32)
plt.show()

增加或减少该值以偏移标题的 y 坐标。

关于python - 是否有使用 matplotlib 指定饼图中标题的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68095237/

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