如何将plt.ylabel =''重置回其正常功能

时间:2019-10-27 11:48:07

标签: python function matplotlib

我不小心设置了plt.ylabel = 'blank string'

现在,当我尝试plt.ylabel('')时,我得到了错误消息:

  

TypeError:“ str”对象不可调用

有重置这些分配的功能吗?

1 个答案:

答案 0 :(得分:1)

只需再次重新导入matplotlib,以便plt.ylabel指向从matplotlib.pyplot导出的方法,而不是指向具有“空白字符串”值的字符串(str)。

import matplotlib.pyplot as plt
plt.ylabel("Label Text!")

enter image description here 如果您只想导入matplotlib.pyplot.ylabel方法而不是重新导入matplotlib,那也可以。

其他参考是source code for matplotlib.pyplot.ylabelofficial documentation