我注意到一些我在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或错误之后的任何代码似乎是正常行为。