如何获得当前的matplolib情节标题?

时间:2018-02-06 09:30:57

标签: python matplotlib

如何以编程方式获取该图的当前标题?

对于matplotlib api的某些函数(例如xticksxlim),getter与setter相同,但调用没有参数的函数({{1 }})。

plt.xticks()引发错误(因为参数是强制性的)。

获取当前情节标题的其他任何方式?

1 个答案:

答案 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