gpt4 book ai didi

matplotlib - Figure 对象没有属性 set_title

转载 作者:行者123 更新时间:2023-12-03 16:52:45 26 4
gpt4 key购买 nike

我用过 stem_graphic绘制茎叶图并将其保存为 pdf 但在尝试输入标题时其给出错误:Figure object have no attribute set_title .

ax, b=stem_graphic(mileage['disp'])
ax.set_title("Vicky")


This is the error
Traceback (most recent call last):
File "<pyshell#214>", line 1, in <module>
ax.set_title("Vicky")
AttributeError: 'Figure' object has no attribute 'set_title'

最佳答案

它看起来像你的 stem_graphic函数返回 matplotlib.figure对象,所以你应该使用 suptitle()添加标题的方法。

尝试:

fig, b = stem_graphic(mileage['disp'])
fig.suptitle("Vicky")

关于matplotlib - Figure 对象没有属性 set_title,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44811302/

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