matplotlib ylabel TypeError:' str'对象不可调用

时间:2018-06-13 19:46:09

标签: python-3.x matplotlib

我注意到一些我在matplotlib.pyplot中无法理解的奇怪行为

当我调用ylabel方法时,我得到TypeError,如下所示。使用xlabel方法不会发生这种情况。找到的字符串值和我的情节打印。

我错过了什么?

TypeError                                 Traceback (most recent call last)
<ipython-input-85-5a3cfeebed52> in <module>()
      4 plt.grid(False)
      5 #plt.ylabel('Relative Search Freq')
----> 6 plt.ylabel('This is the Y Label')
      7 plt.xlabel('This is the X Label')
      8 plt.legend()

TypeError: 'str' object is not callable

图表确实打印但没有ylabel或错误之后的任何代码似乎是正常行为。

0 个答案:

没有答案