7

以前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'
4

2 に答える 2

0

stem_graphicStemgraphic パッケージの関数は Figure と Axes を返します。docstringの状態

:return: matplotlib の図と軸のインスタンス

したがって、コードは次のようになります

fig, ax =stem_graphic(mileage['disp'])
ax.set_title("Vicky")
于 2017-06-28T20:21:50.647 に答える