如何以编程方式获取该图的当前标题?
对于matplotlib
api的某些函数(例如xticks
,xlim
),getter与setter相同,但调用没有参数的函数({{1 }})。
但plt.xticks()
引发错误(因为参数是强制性的)。
获取当前情节标题的其他任何方式?
答案 0 :(得分:2)
使用面向对象的API,有一个set_title()
和一个get_title()
函数:
fig, ax = plt.subplots()
ax.plot([1,2,3])
ax.set_title("Testing the title")
print (ax.get_title())
# Testing the title
plt.show()
或者,您仍然可以使用get_title()
plt.gca()
plt.plot([1,2,3])
plt.title("Testing the title")
print (plt.gca().get_title())
# Testing the title